Files
cli/vendor/wit-component/tests/components/resource-used-through-import/module.wit

14 lines
132 B
Plaintext

package foo:bar;
interface a {
resource r;
}
world module {
export b: interface {
use a.{r};
foo: func() -> r;
}
}