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

14 lines
127 B
Plaintext

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