1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
// { dg-do assemble } template<class K> struct A { int foo(const K&); int bar(const K&); }; template<class K> int A<K>::bar(const K& k) { return(foo(k)); } template<> int A<const char*>::foo(const char*const& k) { return((__SIZE_TYPE__)k); }