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
/
initlist78.C
blob
648ec5307df1176007758423e01455f0d1e46bf8
1
// PR c++/58639
2
// { dg-require-effective-target c++11 }
3
4
struct node {
5
node &parent;
6
};
7
8
struct vector {
9
node n;
10
};
11
12
vector v({}); // { dg-error "" }