Files
cli/vendor/wit-component/tests/interfaces/multi-doc/foo.wit.print

21 lines
183 B
Plaintext

package foo:foo;
interface b {
record the-type {
f: u8,
}
}
interface a {
use b.{the-type};
}
interface b2 {
use b.{the-type};
}
interface a2 {
use b.{the-type};
}