Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
initlist62.C
blob: d739ea392928ec0e8e633b241c14159d363e1db1 [
file
] [
log
] [
blame
]
// PR c++/51399
// { dg-do compile { target c++11 } }
#include
<initializer_list>
struct
A
{
std
::
initializer_list
<int>
x
[
1
]
=
{
0
};
// { dg-error "could not convert" }
A
()
{}
};