aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/template/ref7.C
blob: f6395e2c35f1c2d9b2792cc4d255517a3d5debe1 (plain)
1
2
3
4
5
6
7
8
9
10
// PR c++/60167

template <int& F>
struct Foo {
  typedef int Bar;

  static Bar cache;
};

template <int& F> typename Foo<F>::Bar Foo<F>::cache;