rust/tests/ui/traits/new-solver/prefer-param-env-on-ambiguity.rs
2023-04-10 09:16:33 +02:00

11 lines
170 B
Rust

// compile-flags: -Ztrait-solver=next
// check-pass
trait Foo<'a> {}
trait Bar<'a> {}
impl<'a, T: Bar<'a>> Foo<'a> for T {}
impl<T> Bar<'static> for T {}
fn main() {}