1 // PR c++/48015
2 
3 template <typename T> T f(T);
g()4 template <typename T> void g()
5 {
6   int const c = f (1);
7   int i = c - 0;
8 }
9