rust-clippy/clippy_tests/examples/unused_lt.stderr

29 lines
738 B
Text
Raw Normal View History

error: this lifetime isn't used in the function definition
--> unused_lt.rs:16:14
|
2017-02-08 13:58:07 +00:00
16 | fn unused_lt<'a>(x: u8) {
| ^^
|
= note: `-D unused-lifetimes` implied by `-D warnings`
error: this lifetime isn't used in the function definition
--> unused_lt.rs:20:25
|
2017-02-08 13:58:07 +00:00
20 | fn unused_lt_transitive<'a, 'b: 'a>(x: &'b u8) {
| ^^
|
= note: `-D unused-lifetimes` implied by `-D warnings`
error: this lifetime isn't used in the function definition
--> unused_lt.rs:50:10
|
2017-02-08 13:58:07 +00:00
50 | fn x<'a>(&self) {}
| ^^
|
= note: `-D unused-lifetimes` implied by `-D warnings`
error: aborting due to previous error(s)
To learn more, run the command again with --verbose.