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
/
constexpr-aggr1.C
blob
7e4da11a2df0f8bafe1c43d4001c5e19118fb603
1
// PR c++/60951
2
// { dg-do compile { target c++11 } }
3
4
struct Foo {
5
constexpr Foo(int x = 0) : memb(x) {}
6
int memb;
7
};
8
9
struct FooContainer {
10
Foo foo[2];
11
};
12
13
void fubar() {
14
int nonConst = 0;
15
FooContainer fooContainer;
16
fooContainer = { { 0, nonConst } };
17
}