Exercises cpp_function(Return (Class::*)(Args...) const &&, ...)
| 200 | } |
| 201 | // Exercises cpp_function(Return (Class::*)(Args...) const &&, ...) |
| 202 | int peek() const && { return m_value; } |
| 203 | #ifdef __cpp_noexcept_function_type |
| 204 | // Exercises cpp_function(Return (Class::*)(Args...) && noexcept, ...) |
| 205 | std::string take_noexcept() && noexcept { // NOLINT(readability-make-member-function-const) |
no outgoing calls
no test coverage detected