+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.
--- /dev/null
+// 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
+}