| 22 | } |
| 23 | |
| 24 | std::expected<float, test_exports::E> test_exports::EnumError(float a) { |
| 25 | auto result = test_imports::EnumError(a); |
| 26 | if (result.has_value()) { return result.value(); } |
| 27 | return std::unexpected(to_exports_e(result.error())); |
| 28 | } |
| 29 | |
| 30 | std::expected<float, test_exports::E2> test_exports::RecordError(float a) { |
| 31 | auto result = test_imports::RecordError(a); |
nothing calls this directly
no test coverage detected