projects
/
gcc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ba1a570
)
Improvement from Klaus-Georg.
author
Robert Lipe
<robertl@gcc.gnu.org>
Tue, 30 Jun 1998 10:23:48 +0000
(10:23 +0000)
committer
Robert 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
patch
|
blob
|
history
diff --git
a/gcc/testsuite/g++.old-deja/g++.robertl/eb131.C
b/gcc/testsuite/g++.old-deja/g++.robertl/eb131.C
index 4d07cc911c4cb719b83b6f7573a6e2ffdd7768d7..5f281af1ac795a472c74d7e9dd23de2b526e5820 100644
(file)
--- a/
gcc/testsuite/g++.old-deja/g++.robertl/eb131.C
+++ b/
gcc/testsuite/g++.old-deja/g++.robertl/eb131.C
@@
-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.
}