blob: a5cbccc34df80b82e467cb88095775731b13a3d0 [file] [log] [blame]
// { dg-do assemble }
struct A {
struct B {
B ();
};
};
void f (A::B);
void g ()
{
A::B b;
f (b); // { dg-bogus "" } can't find nested constructor
}