Files
cli/vendor/wit-component/tests/interfaces/pkg-use-chain/chain.wit.print

19 lines
151 B
Plaintext
Raw Normal View History

package foo:chain;
interface a {
type a = u8;
}
interface def {
use a.{a};
enum name {
other,
}
}
interface foo {
use def.{name};
}