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

16 lines
143 B
Plaintext
Raw Normal View History

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