Files
cli/vendor/wit-component/tests/components/export-name-shuffling/module.wit

18 lines
175 B
Plaintext

package foo:foo;
interface name {
record foo {
f: u32,
}
}
world module {
export name;
export name: interface {
use name.{foo};
a: func(f: foo);
}
}