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

13 lines
133 B
Plaintext

package foo:foo;
interface bar {}
interface foo {
name: func(x: bool);
}
world module {
import bar; // unused
import foo;
}