1 // PR c++/52008
2 // { dg-do compile { target c++11 } }
3 
4 template <int I, typename T, typename... Ts>
5 struct A;
6 
7 template<typename... Ts>
8 struct A<0, Ts...>;		// { dg-error "not more specialized" }
9