Open
Description
After rust-lang/rust#69189, the following check returns true
for types, where only the lifetimes differ: &'a T == &'b T
rust-clippy/clippy_lints/src/transmute.rs
Lines 303 to 307 in c036c4f
According to rust-lang/rust#69189 (comment), this probably needs to be fixed by checking the lifetimes of the types with MIR borrowck
.