Improvement from Klaus-Georg.
authorRobert Lipe <robertl@gcc.gnu.org>
Tue, 30 Jun 1998 10:23:48 +0000 (10:23 +0000)
committerRobert Lipe <robertl@gcc.gnu.org>
Tue, 30 Jun 1998 10:23:48 +0000 (10:23 +0000)
From-SVN: r20826

gcc/testsuite/g++.old-deja/g++.robertl/eb131.C

index 4d07cc911c4cb719b83b6f7573a6e2ffdd7768d7..5f281af1ac795a472c74d7e9dd23de2b526e5820 100644 (file)
@@ -10,12 +10,12 @@ struct a {
        void bar( double );
        void bar( float );
 
-       void foo( void (a::*member)(float) );
+       void foo( void (a::*member)(float) ); // ERROR -
 };
 
 a::a()
 {
-       foo( &junk ); // ERROR: junk is an unqualified-id.
-       foo( &bar );  // ERROR: bar is an unqualified-id.
+       foo( &junk ); // ERROR - junk is an unqualified-id.
+       foo( &bar );  // ERROR - bar is an unqualified-id.
 }