(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
cpp0x/
trailing9.C
// PR c++/56646
// { dg-require-effective-target c++11 }

struct A {
  void f();
};

void A::f() {
  struct B {
    auto g() -> void { }
  };
}