* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / alias-decl-33.C
blob25781a484e0686d494f9764f929d2851d94551c9
1 // PR c++/51239
2 // { dg-require-effective-target c++11 }
4 template<class... x>
5 class list{};
6 template<class a, class... b>
7 using tail=list<b...>;
8 template <class...T>
9 void f(tail<T...>);             // { dg-error "alias" }
11 int main()
13   f<int,int>({});