repo.or.cz
/
gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fortran: Fix PR 47485.
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
trailing9.C
blob
d7895b38e3efdb8ba8ce2fcc2cd2859a9ed5bae1
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
}