(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.old-deja/
g++.other/
lookup14.C
// { dg-do assemble  }
// Origin: Mark Mitchell <mark@codesourcery.com>

union U {
  typedef int I;

  struct S {
    void f();
  };
};

void U::S::f() {
  I i;
}