rust/tests/ui/traits/object/bounds-cycle-3.rs
2023-01-11 09:32:08 +00:00

26 lines
336 B
Rust

// Check that we don't have a cycle when we try to normalize `Self::V` in the
// bound below.
// check-pass
trait Is {
type T;
}
impl<U> Is for U {
type T = U;
}
trait Obj {
type U: Is<T = Self::V>;
type V;
}
fn is_obj<T: ?Sized + Obj>(_: &T) {}
fn f(x: &dyn Obj<U = i32, V = i32>) {
is_obj(x)
}
fn main() {}