fn is_elided_lifetime(param: &GenericParam<'_>) -> bool
This can happen for async fn, e.g. async fn f<'_>(&'_ self).
async fn
async fn f<'_>(&'_ self)
See lifetime_to_generic_param in rustc_ast_lowering for more information.
lifetime_to_generic_param
rustc_ast_lowering