| 47 | // it fails to compile with a plain noexcept (tested with icc (ICC) 2021.1 Beta 20200827). |
| 48 | #if defined(__INTEL_COMPILER) && defined(PYBIND11_CPP17) |
| 49 | int f1(int x) noexcept(true) { return x + 1; } |
| 50 | #else |
| 51 | int f1(int x) noexcept { return x + 1; } |
| 52 | #endif |
nothing calls this directly
no outgoing calls
no test coverage detected