]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/g++.dg/cpp0x/trailing9.C
Regenerate riscv.opt.urls and i386.opt.urls
[thirdparty/gcc.git] / gcc / testsuite / g++.dg / cpp0x / trailing9.C
1 // PR c++/56646
2 // { dg-require-effective-target c++11 }
3
4 struct A {
5 void f();
6 };
7
8 void A::f() {
9 struct B {
10 auto g() -> void { }
11 };
12 }