Fix warnings occured during profiledboostrap on
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.jason / access3.C
blobc4e1b188053551e72bb8ceda34090ee410e8bba7
1 // { dg-do assemble  }
2 // Simple testcase for access control.
4 class A {
5  protected:
6   void f ();
7 };
9 class B : public A {
10  public:
11   void f () { A::f(); }