* g++.old-deja/g++.ns/scoped1.C: New test.
authorNathan Sidwell <nathan@codesourcery.com>
Fri, 1 Sep 2000 09:32:52 +0000 (09:32 +0000)
committerNathan Sidwell <nathan@gcc.gnu.org>
Fri, 1 Sep 2000 09:32:52 +0000 (09:32 +0000)
From-SVN: r36095

gcc/testsuite/ChangeLog
gcc/testsuite/g++.old-deja/g++.ns/scoped1.C [new file with mode: 0644]

index 7a7ceed851a567e91ca5736d923e7dbb5e99ad4d..ff0d26c4b8c102356799f60709aafd0050f929d3 100644 (file)
@@ -1,3 +1,7 @@
+2000-09-01  Nathan Sidwell  <nathan@codesourcery.com>
+
+       * g++.old-deja/g++.ns/scoped1.C: New test.
+
 2000-08-30  Alexandre Oliva  <aoliva@redhat.com>
 
        * lib/g++.exp: Support testing already-installed GCC.
diff --git a/gcc/testsuite/g++.old-deja/g++.ns/scoped1.C b/gcc/testsuite/g++.old-deja/g++.ns/scoped1.C
new file mode 100644 (file)
index 0000000..63aa471
--- /dev/null
@@ -0,0 +1,26 @@
+// Build don't link:
+// 
+// Copyright (C) 2000 Free Software Foundation, Inc.
+// Contributed by Nathan Sidwell 10 Aug 2000 <nathan@codesourcery.com>
+
+// Bug 354. We ICE'd before saying a namespace isn't an aggregate type.
+
+namespace mlp
+{
+  struct base
+  {
+    void reset ();
+  };
+}
+
+struct eo : mlp:: base
+{
+};
+
+void foo (eo &ref)
+{
+  ref.mlp::base::reset ();
+  ref.base::reset ();
+  ref.reset ();
+  ref.mlp::reset ();        // ERROR - not an aggregate type
+}