Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
variadic38.C
blob: 49fa48c3bd2944f5dcf6d8db0348df8cb7ee7170 [
file
] [
log
] [
blame
]
// { dg-do compile { target c++11 } }
template
<
int
...
Values
>
struct
int_vec
{};
template
<
int
...
Values
>
struct
int_vec
<
0
,
(
Values
+
1
)...>
{};
// { dg-error "not deducible" }