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-ice3.C
blob
fccd120855aa28f7ec47a9be2be19def3df01f75
1
// PR c++/46289
2
// { dg-do compile { target c++11 } }
3
4
struct A
5
{
6
int i;
7
};
8
9
struct B
10
{
11
A a;
12
constexpr B(): a({1,2}) { } // { dg-error "" }
13
};