(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
cpp0x/
noexcept68.C
// PR c++/97420
// { dg-do compile { target c++11 } }

int f(int) noexcept;
template<int (&)(int)> void A();
int main() {
  A<f>();
}