Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / 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();