X-Git-Url: https://oss.titaniummirror.com/gitweb/?a=blobdiff_plain;f=gcc%2Ftestsuite%2Fg%2B%2B.old-deja%2Fg%2B%2B.robertl%2Feb131.C;fp=gcc%2Ftestsuite%2Fg%2B%2B.old-deja%2Fg%2B%2B.robertl%2Feb131.C;h=0000000000000000000000000000000000000000;hb=6fed43773c9b0ce596dca5686f37ac3fc0fa11c0;hp=34ee0af399906dcd5663b47099956e1186fc253c;hpb=27b11d56b743098deb193d510b337ba22dc52e5c;p=msp430-gcc.git diff --git a/gcc/testsuite/g++.old-deja/g++.robertl/eb131.C b/gcc/testsuite/g++.old-deja/g++.robertl/eb131.C deleted file mode 100644 index 34ee0af3..00000000 --- a/gcc/testsuite/g++.old-deja/g++.robertl/eb131.C +++ /dev/null @@ -1,20 +0,0 @@ -// Build don't link: -// From: Klaus-Georg Adams -// Reported against EGCS snaps 98/06/18. - -struct a { - a(); - void junk( float ); - void junk( double ); - - void bar( double ); - void bar( float ); - - void foo( void (a::*member)(float) ); // ERROR - candidate -}; - -a::a() -{ - foo( &junk ); // ERROR - junk is an unqualified-id. - foo( &bar ); // ERROR - bar is an unqualified-id. -}