Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
variadic-empty1.C
blob: 42daeaa3dcb1aa9eaf4571d96960136d786f3213 [
file
] [
log
] [
blame
]
// PR c++/85093
// { dg-do compile { target c++11 } }
template
<
class
V
>
class
A
{};
template
<
class
V
,
class
...
G
>
class
B
{
typedef
A
<
V
,
G
...>
AB
;
// { dg-error "arguments" }
AB ab
;
};
int
main
()
{
B
<
int
,
double
>
b
;
}