1 // { dg-do compile { target c++11 } }
2 template<int...> struct A;
3 
4 template<template<int> class... T> struct A<T...> {}; // { dg-error "mismatch|expected" }
5