update
authorJason Merrill <jason@gcc.gnu.org>
Mon, 18 May 1998 01:53:57 +0000 (21:53 -0400)
committerJason Merrill <jason@gcc.gnu.org>
Mon, 18 May 1998 01:53:57 +0000 (21:53 -0400)
From-SVN: r19830

gcc/testsuite/g++.old-deja/g++.other/redecl1.C
gcc/testsuite/g++.old-deja/g++.other/using2.C

index 6e25a9a..d08e5aa 100644 (file)
@@ -1,6 +1,6 @@
 //Build don't link:
 struct X{
-  void i();     // ERROR -
-  void i(int);
+  void i();
+  void i(int);  // ERROR - 
   int i;        // ERROR - conflict
 };
index 41887c4..2924498 100644 (file)
@@ -5,6 +5,6 @@ struct X{
 
 struct Y:X{
   void f(int);
-  void f();
-  using X::f;       // ERROR - conflict
-};                  // ERROR -
+  void f();         // ERROR - conflict
+  using X::f;
+};                  // ERROR -