Files
cli/vendor/wit-parser/tests/ui/parse-fail/unresolved-use3.wit

12 lines
98 B
Plaintext

// parse-fail
package foo:foo;
interface foo {
use bar.{x};
}
interface bar {
x: func();
}