Merge from mainline (165734:167278).
[official-gcc/graphite-test-results.git] / gcc / testsuite / g++.dg / template / static6.C
blob30ecae94067cead7911ff4384f8308dfda7ceaaf
1 // PR c++/13969
3 struct B { 
4   static const int N=10; 
5 }; 
6  
7 template <int> struct X {}; 
8  
9 template <typename> struct S { 
10   static const int N = B::N; 
11   X<N> x; 
12 }; 
14 template class S<float>;