Exercises overload_cast with noexcept free function pointers.
| 227 | }; |
| 228 | // Exercises overload_cast with noexcept free function pointers. |
| 229 | int noexcept_free_func(int x) noexcept { return x + 1; } |
| 230 | int noexcept_free_func(float x) noexcept { return static_cast<int>(x) + 2; } |
| 231 | |
| 232 | // Exercises overload_cast with ref-qualified member function pointers. |
nothing calls this directly
no outgoing calls
no test coverage detected