1 // { dg-options "-std=c++0x" }
2 template<typename...T> struct A
3 {
4   static T i; // { dg-error "parameter packs|T" }
5 };
6 
7 int j = A<int>::i; // { dg-error "not a member" }
8