Merge from mainline (165734:167278).
[official-gcc/graphite-test-results.git] / gcc / testsuite / g++.dg / template / anon3.C
blobeee7acd820f69a94429a03826ec137775ec65c8e
1 // PR c++/28370
2 // { dg-do run }
4 namespace
6   template<typename T> struct A { static int *a; };
7   template<typename T> int *A<T>::a = 0;
10 int *
11 foo ()
13   return A<int>::a;
16 int
17 main ()
19   return foo() != 0;