1 // PR c++/36435
2 
3 template <class T> T f();
f()4 template <class T> T* f() { return 0; }
5 
6 template int* f();
7