blob: f8e5d3be8af4562cc904750a84d658f196413434 [file] [log] [blame]
// { dg-do assemble }
// { dg-options "-Wno-c++11-extensions" }
template<class T> T f(T o) { return o; }
template<> int f(int o) { return o; }
template int f(int);