Files
cli/vendor/wit-component/tests/components/import-export-same-iface-name/module.wit

12 lines
137 B
Plaintext

package foo:foo;
interface the-name {
a: func();
}
world module {
import foo:dep/the-name;
import the-name;
export the-name;
}