rust/tests/ui/traits/new-solver/normalize-param-env-2.rs
2023-03-11 23:16:46 +00:00

27 lines
292 B
Rust

// check-pass
// compile-flags: -Ztrait-solver=next
// Issue 92505
trait A<T> {
type I;
fn f()
where
Self::I: A<T>,
{
}
}
impl<T> A<T> for () {
type I = ();
fn f()
where
Self::I: A<T>,
{
<() as A<T>>::f();
}
}
fn main() {}