blob: 086899a4a19fd216c8872b67817eefb7e1f315a2 [file] [log] [blame]
// PR c++/97420
// { dg-do compile { target c++11 } }
int f(int) noexcept;
template<int (&)(int)> void A();
int main() {
A<f>();
}