Files
cli/vendor/wit-component/tests/components/import-resource-in-interface/module.wit

12 lines
147 B
Plaintext
Raw Normal View History

package foo:bar;
world module {
import foo: interface {
resource a {
constructor();
other-new: static func() -> a;
}
}
}