X-Git-Url: https://oss.titaniummirror.com/gitweb?a=blobdiff_plain;f=gcc%2Ftestsuite%2Fg%2B%2B.old-deja%2Fg%2B%2B.law%2Fscope4.C;fp=gcc%2Ftestsuite%2Fg%2B%2B.old-deja%2Fg%2B%2B.law%2Fscope4.C;h=0000000000000000000000000000000000000000;hb=6fed43773c9b0ce596dca5686f37ac3fc0fa11c0;hp=1cfb54e9c34a1be10e0810b820ef2e46e2e6767b;hpb=27b11d56b743098deb193d510b337ba22dc52e5c;p=msp430-gcc.git diff --git a/gcc/testsuite/g++.old-deja/g++.law/scope4.C b/gcc/testsuite/g++.old-deja/g++.law/scope4.C deleted file mode 100644 index 1cfb54e9..00000000 --- a/gcc/testsuite/g++.old-deja/g++.law/scope4.C +++ /dev/null @@ -1,16 +0,0 @@ -// Build don't link: -// GROUPS passed scoping -// local-class file -// From: daniels@sugar.neosoft.com (Brad Daniels) -// Date: Thu, 5 Aug 93 15:36:36 CDT -// Subject: Bug in g++ 2.4.5: Can't touch nested class identifier inside its members -// Message-ID: <9308051536.AA06115@NeoSoft.Com> - -void f() { - class foo { - int x; - public: - foo() : x(1) {} - int bar() { foo p; return p.x; } - }; -}