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-ctor3.C
blob
36d1de4ac11e8ec629c4d97471629bd22e539061
1
// PR c++/46348
2
// { dg-do compile { target c++11 } }
3
4
struct A
5
{
6
int arr[1];
7
8
constexpr A()
9
: arr() { }
10
};