Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.dg / warn / ctor-dtor-privacy-1.C
blob3e84c092168591da201aeec47fac7c8eec8237e9
1 // { dg-options "-Wctor-dtor-privacy" }
3 struct C {                      // { dg-warning "" }
4    static bool result;
5 private:
6    static bool check();
7 };
9 bool C::result = check();