OSDN Git Service

PR c++/32567
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / parse / crash36.C
1 // PR c++/32567
2 // { dg-do compile }
3 // { dg-options "-std=c++98" }
4
5 template <typename... T> struct A       // { dg-error "does not include variadic templates" }
6 {
7   static T &t;                          // { dg-error "not expanded with|T" }
8   static const int i = sizeof (++t);    // { dg-error "invalid use of template type parameter" }
9 };
10
11 int x[A <int>::i];      // { dg-error "is not an integral constant-expression" }