aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.old-deja/g++.jason/template11.C
blob: 004361d6cb7cb6eb4c9a11ee8f25a198e8c13a1f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// { dg-do run  }
// Bug: initializers for static data members of templates don't get run.

template <class T> struct A {
  static T t;
};

int foo () { return 1; }

template <>
int A<int>::t = foo ();

int main ()
{
  return (A<int>::t != 1);
}