* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / variadic79.C
blobed5e0284d2316aec8c9117cb2b73b9f0eb25b24a
1 // PR c++/33213
2 // { dg-do compile { target c++11 } }
3 // { dg-options -fno-new-ttp-matching }
5 template<template<typename> class...> struct A;
7 template<template<typename...> class... B> struct A<B...> {}; // { dg-error "mismatch|'template<class ...> class ... B ...'" }