]> 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 f5b788c16a72b52d77fca5e860ba848c68466cac..30ce7b68578553c843ef8684c67d4b32025169cb 100644 (file)
@@ -1,21 +1,21 @@
 error: this lifetime isn't used in the function definition
-  --> $DIR/unused_lt.rs:26:14
+  --> $DIR/unused_lt.rs:23:14
    |
-26 | fn unused_lt<'a>(x: u8) {
+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
-  --> $DIR/unused_lt.rs:30:25
+  --> $DIR/unused_lt.rs:25:25
    |
-30 | 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:60:10
+  --> $DIR/unused_lt.rs:50:10
    |
-60 |     fn x<'a>(&self) {}
+LL |     fn x<'a>(&self) {}
    |          ^^
 
 error: aborting due to 3 previous errors