/cp
[official-gcc.git] / gcc / testsuite / g++.dg / other / static5.C
blob007b7c398d148d5cf086f3adf87be21a3ff82c56
1 struct S
3   static int i;
4   const static double d;
5 };
7 static int S::i;  // { dg-error "1:.static. may not be used" }
8 const static double S::d = 1.0;  // { dg-error "7:.static. may not be used" }