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

21 lines
188 B
Plaintext
Raw Normal View History

package foo:foo;
interface other {
record name {
f: u8,
}
}
interface bar {
use other.{name as the-name};
enum name {
a,
}
}
interface foo {
use bar.{the-name};
}