rustc/vendor/wit-parser-0.219.1/tests/ui/packages-single-nested.wit
2025-01-11 15:57:26 +01:00

13 lines
151 B
Plaintext

package foo:root;
package foo:name {
interface i1 {
type a = u32;
}
world w1 {
import imp1: interface {
use i1.{a};
}
}
}