* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / alias-decl-23.C
blob0e4ba45aa20e1c0bf161850e4766ce20d4bdf299
1 // PR c++/52233
2 // { dg-do compile { target c++11 } }
4 template <typename t>
5 struct foo
7   template <template <typename...> class... xs>
8   using type = int;
9 };
11 template <typename t, template <typename...> class... xs>
12 struct bar
14   using type = typename foo<t>::template type<xs...>;
17 bar<int, foo> x;