4495766362
From-SVN: r23760
15 lines
216 B
C
15 lines
216 B
C
// Bug: initializers for static data members of templates don't get run.
|
|
|
|
template <class T> struct A {
|
|
static T t;
|
|
};
|
|
|
|
int foo () { return 1; }
|
|
|
|
int A<int>::t = foo ();
|
|
|
|
int main ()
|
|
{
|
|
return (A<int>::t != 1);
|
|
}
|