Files
cli/vendor/wit-component/tests/components/rename-interface/module.wit

19 lines
198 B
Plaintext

package foo:foo;
interface foo {
record bar {
f: u8,
}
a: func() -> bar;
}
world module {
import foo;
import other-name: interface {
use foo.{bar};
a: func() -> bar;
}
}