Files
cli/vendor/wit-parser/tests/ui/parse-fail/import-and-export5.wit

19 lines
173 B
Plaintext

package foo:bar;
interface a {
record x {
}
}
interface b {
use a.{x};
}
world w {
export anon: interface {
use b.{x as x2};
use a.{x};
}
export a;
}