rust/tests/ui/higher-ranked/leak-check-in-selection.rs
2023-12-14 15:22:37 +01:00

25 lines
452 B
Rust

// run-pass
// revisions: old next
//[next] compile-flags: -Znext-solver
#![allow(coherence_leak_check)]
trait Trait: Sized {
fn is_higher_ranked(self) -> bool;
}
impl Trait for for<'a> fn(&'a ()) {
fn is_higher_ranked(self) -> bool {
true
}
}
impl<'a> Trait for fn(&'a ()) {
fn is_higher_ranked(self) -> bool {
false
}
}
fn main() {
let x: for<'a> fn(&'a ()) = |&()| ();
assert!(x.is_higher_ranked());
}