blob: f54a0b523e2a845349f594bd8402710cd2eccd33 [file] [log] [blame]
//@ check-pass
trait A {
type U: Copy;
}
trait B where
<Self::V as A>::U: Copy,
{
type V: A;
}
fn main() {}