OSDN Git Service

PR c++/6936
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / static4.C
1 template <class R>
2 struct A {
3   static int _test; // { dg-message "" }
4   static int _test; // { dg-error "" }
5 };
6 template <class R> int A<R>::_test = 0;
7 struct B : public A <int> { };