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-ice10.C
blob
381b8a4ea3224e6cd0d4c455cb0bc9e1b5dcf476
1
// PR c++/60225
2
// { dg-do compile { target c++11 } }
3
4
struct A
5
{
6
constexpr A() {}
7
static constexpr A a[2] = {}; // { dg-error "22:elements of array 'constexpr const A A::a \\\[2\\\]' have incomplete type" }
8
};
9
10
// { dg-prune-output "storage size" }