blob: 16a385188873730cf6904a83fa0c6071d33702b2 [file] [log] [blame]
// PR c++/48015
template <typename T> T f(T);
template <typename T> void g()
{
int const c = f (1);
int i = c - 0;
}