aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/template/vla2.C
blob: 183f8fadc0ec82306d8bdf06c23ff7a23b88d49a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// PR c++/28879
// { dg-do compile }
// { dg-options "" }

struct A
{
  static int i;
  int j;
};

template<int> void foo ()
{
  int x[A::i];
//int y[A().j];
}

void bar ()
{
  foo<6> ();
}