1 // { dg-do compile { target c++11 } }
2 template<typename... T> struct A
3 {
4   T* x[1]; // { dg-error "parameter packs|T" }
5 };
6 
7 A<int> a;
8