Files
cli/vendor/wit-component/tests/interfaces/import-and-export.wit

15 lines
142 B
Plaintext

package foo:foo;
interface foo {
foo: func();
}
interface bar {
bar: func();
}
world import-and-export {
import foo;
export bar;
}