]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/g++.dg/parse/crash36.C
C++: more location wrapper nodes (PR c++/43064, PR c++/43486)
[thirdparty/gcc.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 *-*-* } .-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 "16:size of array .x. is not an integral constant-expression" }