Path: blob/main/crates/component-macro/tests/codegen/small-anonymous.wit
3075 views
package foo:foo;
interface anon {
enum error {
success,
failure,
}
option-test: func() -> result<option<string>, error>;
}
world the-world {
import anon;
export anon;
}