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