]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/wrong_self_convention.stderr
iterate List by value
[rust.git] / tests / ui / wrong_self_convention.stderr
index fa97713ed78490ecd0893c355dc90a8060065c0b..0d0eb19cd072333012d91cc384e5b6a2031e199a 100644 (file)
@@ -1,75 +1,75 @@
 error: methods called `from_*` usually take no self; consider choosing a less ambiguous name
-  --> $DIR/wrong_self_convention.rs:26:17
+  --> $DIR/wrong_self_convention.rs:17:17
    |
-26 |     fn from_i32(self) {}
+LL |     fn from_i32(self) {}
    |                 ^^^^
    |
    = note: `-D clippy::wrong-self-convention` implied by `-D warnings`
 
 error: methods called `from_*` usually take no self; consider choosing a less ambiguous name
-  --> $DIR/wrong_self_convention.rs:32:21
+  --> $DIR/wrong_self_convention.rs:23:21
    |
-32 |     pub fn from_i64(self) {}
+LL |     pub fn from_i64(self) {}
    |                     ^^^^
 
 error: methods called `as_*` usually take self by reference or self by mutable reference; consider choosing a less ambiguous name
-  --> $DIR/wrong_self_convention.rs:44:15
+  --> $DIR/wrong_self_convention.rs:35:15
    |
-44 |     fn as_i32(self) {}
+LL |     fn as_i32(self) {}
    |               ^^^^
 
 error: methods called `into_*` usually take self by value; consider choosing a less ambiguous name
-  --> $DIR/wrong_self_convention.rs:46:17
+  --> $DIR/wrong_self_convention.rs:37:17
    |
-46 |     fn into_i32(&self) {}
+LL |     fn into_i32(&self) {}
    |                 ^^^^^
 
 error: methods called `is_*` usually take self by reference or no self; consider choosing a less ambiguous name
-  --> $DIR/wrong_self_convention.rs:48:15
+  --> $DIR/wrong_self_convention.rs:39:15
    |
-48 |     fn is_i32(self) {}
+LL |     fn is_i32(self) {}
    |               ^^^^
 
 error: methods called `to_*` usually take self by reference; consider choosing a less ambiguous name
-  --> $DIR/wrong_self_convention.rs:50:15
+  --> $DIR/wrong_self_convention.rs:41:15
    |
-50 |     fn to_i32(self) {}
+LL |     fn to_i32(self) {}
    |               ^^^^
 
 error: methods called `from_*` usually take no self; consider choosing a less ambiguous name
-  --> $DIR/wrong_self_convention.rs:52:17
+  --> $DIR/wrong_self_convention.rs:43:17
    |
-52 |     fn from_i32(self) {}
+LL |     fn from_i32(self) {}
    |                 ^^^^
 
 error: methods called `as_*` usually take self by reference or self by mutable reference; consider choosing a less ambiguous name
-  --> $DIR/wrong_self_convention.rs:54:19
+  --> $DIR/wrong_self_convention.rs:45:19
    |
-54 |     pub fn as_i64(self) {}
+LL |     pub fn as_i64(self) {}
    |                   ^^^^
 
 error: methods called `into_*` usually take self by value; consider choosing a less ambiguous name
-  --> $DIR/wrong_self_convention.rs:55:21
+  --> $DIR/wrong_self_convention.rs:46:21
    |
-55 |     pub fn into_i64(&self) {}
+LL |     pub fn into_i64(&self) {}
    |                     ^^^^^
 
 error: methods called `is_*` usually take self by reference or no self; consider choosing a less ambiguous name
-  --> $DIR/wrong_self_convention.rs:56:19
+  --> $DIR/wrong_self_convention.rs:47:19
    |
-56 |     pub fn is_i64(self) {}
+LL |     pub fn is_i64(self) {}
    |                   ^^^^
 
 error: methods called `to_*` usually take self by reference; consider choosing a less ambiguous name
-  --> $DIR/wrong_self_convention.rs:57:19
+  --> $DIR/wrong_self_convention.rs:48:19
    |
-57 |     pub fn to_i64(self) {}
+LL |     pub fn to_i64(self) {}
    |                   ^^^^
 
 error: methods called `from_*` usually take no self; consider choosing a less ambiguous name
-  --> $DIR/wrong_self_convention.rs:58:21
+  --> $DIR/wrong_self_convention.rs:49:21
    |
-58 |     pub fn from_i64(self) {}
+LL |     pub fn from_i64(self) {}
    |                     ^^^^
 
 error: aborting due to 12 previous errors