(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.old-deja/
g++.jason/
lookup2.C
// { 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
}