blob: ff8a26f2d1671ce119c01486229b63bea7f841dc [file] [log] [blame]
// { dg-do assemble }
template<class T> T f(T o) { return o; }
template<> int f(int o) { return o; }
template int f(int);