blob: d7895b38e3efdb8ba8ce2fcc2cd2859a9ed5bae1 [file] [log] [blame]
// PR c++/56646
// { dg-require-effective-target c++11 }
struct A {
void f();
};
void A::f() {
struct B {
auto g() -> void { }
};
}