OSDN Git Service

* gcc.dg/tm/memopt-6.c: Cleanup tmedge tree dump.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / vla2.C
1 // PR c++/28879
2 // { dg-do compile }
3 // { dg-options "" }
4
5 struct A
6 {
7   static int i;
8   int j;
9 };
10
11 template<int> void foo ()
12 {
13   int x[A::i];
14 //int y[A().j];
15 }
16
17 void bar ()
18 {
19   foo<6> ();
20 }