repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
PR c++/85553
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
nsdmi-aggr1.C
blob
e07d392a66477880fbb46c4b852821a194c809d4
1
// PR c++/65815
2
// { dg-do compile { target c++11 } }
3
4
struct array {
5
int data [2];
6
};
7
8
struct X {
9
array a = { 1, 2 };
10
};