2022-10-28 17:18:07 +00:00
|
|
|
error: the following explicit lifetimes could be elided: 'a
|
2020-09-29 21:06:08 +00:00
|
|
|
--> $DIR/ice-2774.rs:15:1
|
2020-09-08 00:39:39 +00:00
|
|
|
|
|
|
|
|
LL | pub fn add_barfoos_to_foos<'a>(bars: &HashSet<&'a Bar>) {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= note: `-D clippy::needless-lifetimes` implied by `-D warnings`
|
2023-01-31 14:12:03 +00:00
|
|
|
help: elide the lifetimes
|
|
|
|
|
|
|
|
|
LL - pub fn add_barfoos_to_foos<'a>(bars: &HashSet<&'a Bar>) {
|
|
|
|
LL + pub fn add_barfoos_to_foos(bars: &HashSet<&Bar>) {
|
|
|
|
|
|
2020-09-08 00:39:39 +00:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|