Fortran: Fix PR 47485.
[gcc.git] / gcc / testsuite / g++.dg / cpp0x / noexcept68.C
blob086899a4a19fd216c8872b67817eefb7e1f315a2
1 // PR c++/97420
2 // { dg-do compile { target c++11 } }
4 int f(int) noexcept;
5 template<int (&)(int)> void A();
6 int main() {
7   A<f>();