summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp0x/variadic79.C
blob: ed5e0284d2316aec8c9117cb2b73b9f0eb25b24a (plain)
1
2
3
4
5
6
7
// PR c++/33213
// { dg-do compile { target c++11 } }
// { dg-options -fno-new-ttp-matching }

template<template<typename> class...> struct A;

template<template<typename...> class... B> struct A<B...> {}; // { dg-error "mismatch|'template<class ...> class ... B ...'" }