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