Files
cli/vendor/wit-component/tests/targets/error-missing-import/test.wit

14 lines
121 B
Plaintext

package test:foo;
interface foo {
f: func();
}
world foobar {
export foo;
}
world imports {
import foo;
}