rust/tests/ui/extra_unused_lifetimes.stderr

29 lines
803 B
Text
Raw Normal View History

error: this lifetime isn't used in the function definition
2020-04-08 16:00:03 +02:00
--> $DIR/extra_unused_lifetimes.rs:8:14
|
2018-12-27 16:57:55 +01:00
LL | fn unused_lt<'a>(x: u8) {}
| ^^
|
= note: `-D clippy::extra-unused-lifetimes` implied by `-D warnings`
error: this lifetime isn't used in the function definition
2020-04-08 16:00:03 +02:00
--> $DIR/extra_unused_lifetimes.rs:10:25
|
2018-12-27 16:57:55 +01:00
LL | fn unused_lt_transitive<'a, 'b: 'a>(x: &'b u8) {
| ^^
error: this lifetime isn't used in the function definition
2020-04-08 16:00:03 +02:00
--> $DIR/extra_unused_lifetimes.rs:35:10
|
2018-12-27 16:57:55 +01:00
LL | fn x<'a>(&self) {}
| ^^
2019-09-01 07:55:29 +02:00
error: this lifetime isn't used in the function definition
2020-04-08 16:00:03 +02:00
--> $DIR/extra_unused_lifetimes.rs:61:22
2019-09-01 07:55:29 +02:00
|
LL | fn unused_lt<'a>(x: u8) {}
| ^^
error: aborting due to 4 previous errors
2018-01-16 17:06:27 +01:00