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-70001-1.C
blob
7b28177b82ff473569ad23cd4dbd90ac4473ea3a
1
// PR c++/70001
2
// { dg-do compile { target c++11 } }
3
// { dg-require-effective-target size24plus }
4
5
struct B
6
{
7
int a;
8
constexpr B () : a (0) { }
9
};
10
11
struct A
12
{
13
B b[1 << 19];
14
} c;