aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/debug/static1.C
blob: 7419ce5077ff1dad99cb3881aa706afbd5c53487 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// PR c++/24569

template <int dim>
struct S
{
  static const int u = 2 * dim;
  static const int p[u];
  static int f();
};

template <>
inline int S<3>::f () { return 1; }

template <int dim> const int S<dim>::u;

template class S<3>;