1 // { dg-do compile { target c++11 } }
2 template<typename..., typename> struct A // { dg-error "parameter pack" }
3 {
4  static int i;
5 };
6 
7 A<int, int> a;
8 A<char,int> b;
9