2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.dg / overload / scope1.C
blobf783b7613770d55f186107cacc6dfa53199973e9
1 // PR c++/9868
3 template <typename T> struct D {
4   void (*p)();
6   void clear() {
7     D::p();
8   }
9 };
10 template class D<bool>;