1 // PR c++/80356
2 
3 template <int (&)(int, int)> struct a;
4 template <int (&b)(int, int)> a<b> f();
5