Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.dg / parse / qualified1.C
blob6dfb87e177ca54277123007e9f55aa27ed49b80e
1 struct A {};
3 struct B : public A
5     static void foo ();
6 };
8 template <typename T> struct C
10     C() : f(B::foo) {}
11     void (*f)();
14 C<int> c;