1 // { dg-do assemble  }
2 
3 struct A {
4   struct B {
5     B ();
6   };
7 };
8 void f (A::B);
g()9 void g ()
10 {
11   A::B b;
12   f (b);	  // { dg-bogus "" } can't find nested constructor
13 }
14