blob: 9312653a17dbfc4fd17d47d9a1ca2de79e51043c [file] [log] [blame]
// Test that g++ allows friends to use private types in their declarations.
// Build don't link:
class A {
typedef int I;
friend I f (I);
};
A::I f (A::I);
A::I f (A::I) { return 0; }