// PRMS Id: 9930 // Test of -fexternal-templates hackery in new template code // Special g++ options: -Wno-deprecated -fexternal-templates #pragma implementation "foo.hh" #pragma interface "foo.hh" template class ONE { public: static void func(); }; template void ONE::func() { } class ONE { public: static void func(); }; void ONE::func() { } int main() { ONE::func(); ONE::func(); return 0; }