X-Git-Url: https://oss.titaniummirror.com/gitweb?a=blobdiff_plain;f=gcc%2Ftestsuite%2Fg%2B%2B.old-deja%2Fg%2B%2B.law%2Fvisibility21.C;fp=gcc%2Ftestsuite%2Fg%2B%2B.old-deja%2Fg%2B%2B.law%2Fvisibility21.C;h=0000000000000000000000000000000000000000;hb=6fed43773c9b0ce596dca5686f37ac3fc0fa11c0;hp=845854029bfe27425267ff3bdf161a8d25f82fd1;hpb=27b11d56b743098deb193d510b337ba22dc52e5c;p=msp430-gcc.git diff --git a/gcc/testsuite/g++.old-deja/g++.law/visibility21.C b/gcc/testsuite/g++.old-deja/g++.law/visibility21.C deleted file mode 100644 index 84585402..00000000 --- a/gcc/testsuite/g++.old-deja/g++.law/visibility21.C +++ /dev/null @@ -1,17 +0,0 @@ -// Build don't link: -// GROUPS passed visibility -// visibility file -// From: klamer@mi.el.utwente.nl (Klamer Schutte) -// Date: Thu, 12 Aug 93 12:03:09 +0200 -// Subject: g++ 2.4.5 failed to report a bug -// Message-ID: <9308121003.AA02294@mi.el.utwente.nl> -class A { -protected: - void foo(); // ERROR - protected -}; - -class B : public A -{ - void bar(A &a) - { a.foo(); }// ERROR - .* -};