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