Files
cli/vendor/wit-parser/tests/ui/parse-fail/use-cycle4.wit

15 lines
133 B
Plaintext
Raw Normal View History

// parse-fail
package foo:foo;
interface foo {
use bar.{y};
type x = u32;
}
interface bar {
use foo.{x};
type y = u32;
}