OSDN Git Service

PR c++/55058
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / other / static2.C
1 //PR c++/26573
2
3 void foo()
4 {
5   struct A { static int i; };   // { dg-error "shall not have" }
6 }
7
8 template<typename T>
9 void bar()
10 {
11   struct B { static int j; };   // { dg-error "shall not have" }
12 }