DEBSOURCES
Skip Quicknav
sources / rustc / 1.88.0%2Bdfsg1-1 / tests / ui / associated-types / wf-cycle.rs
12345678910111213
//@ check-pass trait A { type U: Copy; } trait B where <Self::V as A>::U: Copy, { type V: A; } fn main() {}