* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / variadic-empty1.C
blob42daeaa3dcb1aa9eaf4571d96960136d786f3213
1 // PR c++/85093
2 // { dg-do compile { target c++11 } }
4 template<class V> class A {};
6 template<class V, class... G> class B {
7   typedef A<V,G...> AB;         // { dg-error "arguments" }
8   AB ab;
9 };
11 int main() {
12   B<int,double> b;