blob: e44b1dcb057991ef169cd1909285377e0b9ce9c8 [file] [log] [blame]
// Build don't link:
struct A {
struct B {
B ();
};
};
void f (A::B);
void g ()
{
A::B b;
f (b); // gets bogus error - can't find nested constructor
}