#C Operator plus with invalid return type
| 50 | |
| 51 | // #C Operator plus with invalid return type |
| 52 | int operator+(const Stub& rhs) noexcept(nexcept) |
| 53 | requires(operatorPlus && not validReturnType) |
| 54 | { |
| 55 | return {}; |
| 56 | } |
| 57 | }; |
| 58 | |
| 59 | // #D Create the different stubs from the class template |
nothing calls this directly
no outgoing calls
no test coverage detected