Files
cli/vendor/wit-component/tests/components/error-async-export-missing-callback/module.wit

11 lines
143 B
Plaintext
Raw Normal View History

package foo:foo;
interface bar {
foo: func(s: string) -> string;
}
world module {
export bar;
export foo: func(s: string) -> string;
}