Files
cli/vendor/wit-component/tests/components/async-import/module.wit

11 lines
143 B
Plaintext

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