1 // { dg-do compile { target c++11 } }
2 
3 template <typename T> struct A {};
4 template <int... I> struct B: A<I...> {}; // { dg-error "type" }
5