rt_gccstream/gcc/testsuite/g++.old-deja/g++.other/access9.C

11 lines
192 B
C

// { dg-do assemble }
// Test that g++ allows friends to use private types in their declarations.
class A {
typedef int I;
friend I f (I);
};
A::I f (A::I);
A::I f (A::I) { return 0; }