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

16 lines
148 B
Plaintext
Raw Normal View History

package foo:foo;
interface foo {
type a = u32;
type b = a;
type c = b;
}
interface bar {
use foo.{c};
}
interface baz {
use bar.{c};
}