summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp0x/variadic79.C
blob: c6479e04fe50249e56c7be68ebf7c1d8295432bb (plain)
1
2
3
4
5
6
7
// PR c++/33213
// { dg-do compile }
// { dg-options "-std=gnu++0x" }

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

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