/* -*- C++ -*- */ /************************************************************************* * Copyright(c) 1995~2005 Masaharu Goto (root-cint@cern.ch) * * For the licensing terms see the file COPYING * ************************************************************************/ template class A { public: void set(T in) ; }; template void A::set(T in) { } int main() { A *pa; pa=new A; pa->set(0xfffff); return 0; }