DEBSOURCES
Skip Quicknav
sources / rustc-web / 1.70.0%2Bdfsg1-7~deb11u1 / 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() {}