blob: 8a5de0fa2481e9f04351a464285d2db146007697 [file] [log] [blame]
// Build don't link:
// GROUPS passed nested-classes
class A {
int x;
struct B {
int x;
};
struct C;
friend struct C;
struct C {
int bug (A::B &y);
};
};
int
A::C::bug (A::B &y)
{
return y.x;
}