3 // Origin: Lynn Akers <lakers@peachtree.com>
5 // PR c++/10940: Problem handling parameter list for static member
6 // that is a specialization of a member template of a template class.
12 template<typename T> static void do_add(T* p, T v);
17 inline void o<32>::do_add(T* p, T v)
25 o<32>().do_add<int>(&a, 0x2000);