Files
cli/vendor/wit-parser/tests/ui/world-implicit-import1.wit

13 lines
147 B
Plaintext
Raw Normal View History

package foo:foo;
interface foo {
type a = u32;
}
world the-world {
import bar: interface {
use foo.{a};
}
import foo: interface {}
}