rust/tests/ui/rust-2018/issue-51008-1.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
247 B
Rust
Raw Normal View History

// Regression test for #51008 -- the anonymous lifetime in `&i32` was
// being incorrectly considered part of the "elided lifetimes" from
// the impl.
//
2024-02-06 20:42:01 -06:00
//@ check-pass
trait A {
}
impl<F> A for F where F: PartialEq<fn(&i32)> { }
fn main() {}