| 66 | int m1(int x) noexcept { return x - 1; } |
| 67 | int m2(int x) const noexcept { return x - 2; } |
| 68 | int m3(int x) noexcept(true) { return x - 3; } |
| 69 | int m4(int x) const noexcept(true) { return x - 4; } |
| 70 | int m5(int x) noexcept(false) { return x - 5; } |
| 71 | int m6(int x) const noexcept(false) { return x - 6; } |
nothing calls this directly
no outgoing calls
no test coverage detected