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