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
Add qdf24xx base tuning support.
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
constexpr-ctor17.C
blob
ed82a14e6512175b2aa6a9b7ecb3cdd98316c5f7
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
constexpr C() {}
10
};
11
12
C c;
13
constexpr C d;