Files
cli/vendor/wit-component/tests/components/tricky-resources2/module.wit

15 lines
147 B
Plaintext
Raw Normal View History

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