| 21 | } |
| 22 | |
| 23 | int32_t main() |
| 24 | { |
| 25 | auto const func = [](auto &&e) |
| 26 | { return e * e; }; |
| 27 | auto const result = optionalLift(func)(std::make_optional(2)); |
| 28 | std::cout << *result << std::endl; |
| 29 | return 0; |
| 30 | } |
nothing calls this directly
no test coverage detected