| 14 | } |
| 15 | |
| 16 | test_exports::E to_exports_e(test_imports::E e) { |
| 17 | switch (e) { |
| 18 | case test_imports::E::kA: return test_exports::E::kA; |
| 19 | case test_imports::E::kB: return test_exports::E::kB; |
| 20 | case test_imports::E::kC: return test_exports::E::kC; |
| 21 | } |
| 22 | } |
| 23 | |
| 24 | std::expected<float, test_exports::E> test_exports::EnumError(float a) { |
| 25 | auto result = test_imports::EnumError(a); |
no outgoing calls
no test coverage detected