2019-10-15 12:05:13 -05:00
|
|
|
error: lifetime parameter `'a` never used
|
2022-02-17 10:00:04 -06:00
|
|
|
--> $DIR/unused-lifetime.rs:31:23
|
2019-10-15 12:05:13 -05:00
|
|
|
|
|
2022-02-17 10:00:04 -06:00
|
|
|
LL | fn wrong_without_args<'a>() {}
|
|
|
|
| -^^- help: elide the unused lifetime
|
2019-10-15 12:05:13 -05:00
|
|
|
|
|
2020-01-22 17:57:38 -06:00
|
|
|
note: the lint level is defined here
|
2020-12-03 23:06:53 -06:00
|
|
|
--> $DIR/unused-lifetime.rs:5:9
|
2019-10-15 12:05:13 -05:00
|
|
|
|
|
|
|
|
LL | #![deny(unused_lifetimes)]
|
|
|
|
| ^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: lifetime parameter `'a` never used
|
2022-02-17 10:00:04 -06:00
|
|
|
--> $DIR/unused-lifetime.rs:33:21
|
2019-10-15 12:05:13 -05:00
|
|
|
|
|
2020-12-03 23:06:53 -06:00
|
|
|
LL | fn wrong_1_lifetime<'a>(_: &i32) {}
|
|
|
|
| -^^- help: elide the unused lifetime
|
2019-10-15 12:05:13 -05:00
|
|
|
|
|
|
|
error: lifetime parameter `'b` never used
|
2022-02-17 10:00:04 -06:00
|
|
|
--> $DIR/unused-lifetime.rs:35:26
|
2019-10-15 12:05:13 -05:00
|
|
|
|
|
2020-12-03 23:06:53 -06:00
|
|
|
LL | fn wrong_2_lifetimes<'a, 'b>(_: &'a i32, _: &i32) {}
|
|
|
|
| --^^
|
|
|
|
| |
|
|
|
|
| help: elide the unused lifetime
|
2019-10-15 12:05:13 -05:00
|
|
|
|
2022-02-17 10:00:04 -06:00
|
|
|
error: aborting due to 3 previous errors
|
2019-10-15 12:05:13 -05:00
|
|
|
|