| 4 | #include <test_cpp.h> |
| 5 | |
| 6 | static bool equal(std::optional<wit::string> const& a, std::optional<std::string_view> const& b) { |
| 7 | return a.has_value() == b.has_value() && a->get_view()==b.value(); |
| 8 | } |
| 9 | |
| 10 | void exports::test::options::to_test::OptionNoneParam(std::optional<wit::string> a) |
| 11 | { |
no test coverage detected