Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / g++.old-deja / g++.brendan / visibility7.C
blobf7bf00c1a722a107edf7e1706ad3c8e16400f362
1 // { dg-do assemble  }
2 // GROUPS passed visibility
3 class X
5 public:
6   void fn ();// { dg-error "" } .*
7 };
8 class Y : private X
9 {};
11 class Unrelated
13 public:
14   void foo () { Y y; y.fn (); }// { dg-error "" } .*