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