| 17 | } |
| 18 | |
| 19 | void exports::test::options::to_test::OptionSomeParam(std::optional<wit::string> a) { |
| 20 | assert(equal(a, std::optional<std::string_view>("foo"))); |
| 21 | } |
| 22 | |
| 23 | std::optional<wit::string> exports::test::options::to_test::OptionSomeResult() { |
| 24 | return std::optional<wit::string>(wit::string::from_view("foo")); |