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
/
aggr1.C
blob
0e408e6c6842eda28677daae51ac4cfa7df7f1f4
1
// PR c++/49132
2
// { dg-do compile { target c++11 } }
3
4
struct A {
5
const int m;
6
};
7
8
A a1 = {};
9
A a2{};
10
11
struct B {
12
A a;
13
};
14
15
B b1 = {};
16
B b2{};