1 // PR c++/32567
2 // { dg-do compile }
3 // { dg-options "-std=c++98" }
4 
5 template <typename... T> struct A	// { dg-warning "variadic templates" }
6 {
7   static T &t;				// { dg-error "not expanded with" "not expanded" }
8 					// { dg-message "T" "T" { target *-*-* } .-1 }
9   static const int i = sizeof (++t);	// { dg-error "was not declared in this scope" }
10 };
11 
12 int x[A <int>::i];		// { dg-error "constant-expression" }
13