Files
cli/vendor/wit-parser/tests/ui/include-reps.wit

16 lines
151 B
Plaintext
Raw Normal View History

package foo:foo;
interface a {}
interface b {}
world bar {
import a;
export b;
}
world foo {
include bar;
include bar;
include bar;
}