* cfgloopmanip.c (duplicate_loop_to_header_edge): Cleanup profile
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / access3.C
blob41760899841641ef30d10dea8dd90ae9e75197e4
1 // { dg-do assemble  }
2 // The standard sez that a use of a name gets the most access it can through
3 // the various paths that can reach it.  Here, the access decl in B gives
4 // us access.
6 struct A
8   void f ();                    
9 };
11 struct B: private virtual A
13   A::f; // { dg-warning "deprecated" }
16 struct C: private virtual A, public B
20 int
21 main ()
23   C c;
25   c.f ();