aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/template/local7.C
blob: 3045534eaa6a1b94bac2da53db19ab0ee5fa008c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// PR c++/53599

template <typename T>
int foo ()
{
  struct F;
  struct G
  {
    static int F::* bar();
  };

  return sizeof(G);
}

int z = foo <int> ();