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
Daily bump.
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
constexpr-ctor16.C
blob
12aaeebf0917b6cb528b5a0c6665d0ba88daeaeb
1
// PR c++/57820
2
// { dg-do compile { target c++11 } }
3
4
struct C
5
{
6
int a = 2;
7
int b = a + 1;
8
};
9
10
C c;
11
constexpr C d = {};