Merge from mainline (167278:168000).
[official-gcc/graphite-test-results.git] / gcc / testsuite / g++.dg / template / static31.C
blob935a8a790fa464813f6bdc867f258dd6db3a169d
1 // PR c++/32674
3 class C
5   static const int j = 3;
6 };
8 template<int> class A
10   static const int i1;
11   static const int i2;
12   static const int i3;
13   static const int i4;
16 template<int N> const int A<N>::i1(C::j);
17 template<int N> const int A<N>::i2 = C::j;
18 template<int N> const int A<N>::i3(C::j, 5); // { dg-error "compound expression" }
19 template<int N> const int A<N>::i4 = (C::j, 7);