Fix broken MinGW build of gcc.c
[official-gcc.git] / gcc / testsuite / g++.dg / warn / ctor-dtor-privacy-2.C
blob16873ab7821e2b1f2e2d789768ced31e51d91e96
1 struct C {
2    static bool result;
3 private:
4    static bool check();
5 };
7 bool C::result = check();