No empty .Rs/.Re
[netbsd-mini2440.git] / gnu / dist / gcc4 / 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;