rust/tests/ui/unused_lt.stderr

23 lines
587 B
Plaintext
Raw Normal View History

error: this lifetime isn't used in the function definition
2018-10-07 00:18:06 +08:00
--> $DIR/unused_lt.rs:26:14
|
2018-10-07 00:18:06 +08:00
26 | 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
2018-10-07 00:18:06 +08:00
--> $DIR/unused_lt.rs:30:25
|
2018-10-07 00:18:06 +08:00
30 | fn unused_lt_transitive<'a, 'b: 'a>(x: &'b u8) {
| ^^
error: this lifetime isn't used in the function definition
2018-10-07 00:18:06 +08:00
--> $DIR/unused_lt.rs:60:10
|
2018-10-07 00:18:06 +08:00
60 | fn x<'a>(&self) {}
| ^^
2018-01-17 00:06:27 +08:00
error: aborting due to 3 previous errors