Files
cli/vendor/wit-parser/tests/ui/parse-fail/nested-packages-with-error.wit

14 lines
178 B
Plaintext
Raw Normal View History

package foo:root;
package foo:name {}
package bar:name {
interface unused {
type a = u32;
}
world w {
import imp: interface {
use missing.{a};
}
}
}