Error code E0496
A lifetime name is shadowing another lifetime name.
Erroneous code example:
ⓘ
Please change the name of one of the lifetimes to remove this error. Example:
struct Foo<'a> {
a: &'a i32,
}
impl<'a> Foo<'a> {
fn f<'b>(x: &'b i32) { // ok!
}
}
fn main() {
}