aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/variadic79.C
blob: 389199cc41db315dde97968a151892adf8ce1893 (plain)
1
2
3
4
5
6
// PR c++/33213
// { dg-do compile { target c++11 } }

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

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