rustc/vendor/wit-component-0.219.1/tests/interfaces/use-chain.wit
2025-01-11 15:57:26 +01:00

16 lines
148 B
Plaintext

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