OSDN Git Service

2010-01-26 Richard Guenther <rguenther@suse.de>
[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-warning "variadic templates" }
6 {
7   static T &t;                          // { dg-error "not expanded with" "not expanded" }
8                                         // { dg-message "T" "T" { target *-*-* } 7 }
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 "is not an integral constant-expression" }