X-Git-Url: https://oss.titaniummirror.com/gitweb?a=blobdiff_plain;f=gcc%2Ftestsuite%2Fg%2B%2B.old-deja%2Fg%2B%2B.bugs%2F891230_01.C;fp=gcc%2Ftestsuite%2Fg%2B%2B.old-deja%2Fg%2B%2B.bugs%2F891230_01.C;h=0000000000000000000000000000000000000000;hb=6fed43773c9b0ce596dca5686f37ac3fc0fa11c0;hp=ac49e0bd4446bac80a0c0eed7cac12f59d8cdf01;hpb=27b11d56b743098deb193d510b337ba22dc52e5c;p=msp430-gcc.git diff --git a/gcc/testsuite/g++.old-deja/g++.bugs/891230_01.C b/gcc/testsuite/g++.old-deja/g++.bugs/891230_01.C deleted file mode 100644 index ac49e0bd..00000000 --- a/gcc/testsuite/g++.old-deja/g++.bugs/891230_01.C +++ /dev/null @@ -1,20 +0,0 @@ -// g++ 1.36.1 bug 891230_01 - -// g++ gives typedefs which are nested within class declarations a scope -// which is local to the class declaration itself. This causes examples -// like the following to get compile-time errors. - -// Cfront 2.0 passes this test. - -// keywords: typedef, nested types, scope - -struct foo { - - typedef foo* foo_p; - void member (foo_p); -}; - -void foo::member (foo_p p) { // gets bogus errors -} - -int main () { return 0; }