1 // { dg-options "-std=c++0x" }
2 template<int...> struct A;
3 
4 template<template<int> class... T> struct A<T...> {}; // { dg-error "mismatch|expected" }
5