]> gcc.gnu.org Git - gcc.git/blob - gcc/testsuite/g++.dg/parse/crash36.C
Implement WG21 N2672, Initializer List proposed wording
[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-error "variadic templates" }
6 {
7 static T &t; // { dg-error "not expanded with|T" }
8 static const int i = sizeof (++t); // { dg-error "was not declared in this scope" }
9 };
10
11 int x[A <int>::i]; // { dg-error "is not an integral constant-expression" }
This page took 0.038029 seconds and 5 git commands to generate.