* Makefile.in: Rebuilt.
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.law / visibility21.C
blob845854029bfe27425267ff3bdf161a8d25f82fd1
1 // Build don't link: 
2 // GROUPS passed visibility
3 // visibility file
4 // From: klamer@mi.el.utwente.nl (Klamer Schutte)
5 // Date:     Thu, 12 Aug 93 12:03:09 +0200
6 // Subject:  g++ 2.4.5 failed to report a bug
7 // Message-ID: <9308121003.AA02294@mi.el.utwente.nl>
8 class A {
9 protected:
10       void foo(); // ERROR - protected
13 class B : public A
15         void bar(A &a)
16                 {       a.foo(); }// ERROR - .*