DEBSOURCES
Skip Quicknav
sources / rustc / 1.85.0%2Bdfsg2-3 / vendor / wit-parser-0.219.1 / tests / ui / parse-fail / use-cycle4.wit
1234567891011121314
// parse-fail package foo:foo; interface foo { use bar.{y}; type x = u32; } interface bar { use foo.{x}; type y = u32; }