| 51 | int f1(int x) noexcept { return x + 1; } |
| 52 | #endif |
| 53 | int f2(int x) noexcept(true) { return x + 2; } |
| 54 | int f3(int x) noexcept(false) { return x + 3; } |
| 55 | PYBIND11_WARNING_PUSH |
| 56 | PYBIND11_WARNING_DISABLE_GCC("-Wdeprecated") |
nothing calls this directly
no outgoing calls
no test coverage detected