| 55 | } |
| 56 | |
| 57 | leaf::result<void> f4() |
| 58 | { |
| 59 | return leaf::try_handle_some( |
| 60 | [] |
| 61 | { |
| 62 | return f1(); |
| 63 | }, |
| 64 | [](leaf::diagnostic_details const & e) |
| 65 | { |
| 66 | return e.error().load(info<1>{14}); |
| 67 | } ); |
| 68 | } |
| 69 | |
| 70 | int main() |
| 71 | { |
no test coverage detected