]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/unused_lt.stderr
Auto merge of #3603 - xfix:random-state-lint, r=phansch
[rust.git] / tests / ui / unused_lt.stderr
index e590cfc91aa9311ce0923e2baddb7e6141407399..30ce7b68578553c843ef8684c67d4b32025169cb 100644 (file)
@@ -1,7 +1,7 @@
 error: this lifetime isn't used in the function definition
   --> $DIR/unused_lt.rs:23:14
    |
-23 | fn unused_lt<'a>(x: u8) {}
+LL | fn unused_lt<'a>(x: u8) {}
    |              ^^
    |
    = note: `-D clippy::extra-unused-lifetimes` implied by `-D warnings`
@@ -9,13 +9,13 @@ error: this lifetime isn't used in the function definition
 error: this lifetime isn't used in the function definition
   --> $DIR/unused_lt.rs:25:25
    |
-25 | fn unused_lt_transitive<'a, 'b: 'a>(x: &'b u8) {
+LL | fn unused_lt_transitive<'a, 'b: 'a>(x: &'b u8) {
    |                         ^^
 
 error: this lifetime isn't used in the function definition
   --> $DIR/unused_lt.rs:50:10
    |
-50 |     fn x<'a>(&self) {}
+LL |     fn x<'a>(&self) {}
    |          ^^
 
 error: aborting due to 3 previous errors