Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
constexpr-49776.C
blob: c1d1c375448c647051c4a802c8aada14faa52202 [
file
] [
log
] [
blame
]
// PR c++/49776
// { dg-do compile { target c++11 } }
struct
s
{
int
i
[
1
];
template
<
class
...
Types
>
constexpr
s
(
Types
...
args
)
:
i
{
args
...}
// { dg-error "cannot convert" }
{
}
};
int
main
()
{
s test
=
nullptr
;
}