1 // PR c++/60531
2 
3 template < class T > T foo ();
4 
5 bool b1 = foo<int> == foo<int>;
6 int (*fp1)() = +foo<int>;
7