]> 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 ee0f4f8a143c475907d44e0346190876ac8e81fb..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:31:17
+  --> $DIR/wrong_self_convention.rs:17:17
    |
-31 |     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:37:21
+  --> $DIR/wrong_self_convention.rs:23:21
    |
-37 |     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:50:15
+  --> $DIR/wrong_self_convention.rs:35:15
    |
-50 |     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:52:17
+  --> $DIR/wrong_self_convention.rs:37:17
    |
-52 |     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:54:15
+  --> $DIR/wrong_self_convention.rs:39:15
    |
-54 |     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:56:15
+  --> $DIR/wrong_self_convention.rs:41:15
    |
-56 |     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:58:17
+  --> $DIR/wrong_self_convention.rs:43:17
    |
-58 |     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:60:19
+  --> $DIR/wrong_self_convention.rs:45:19
    |
-60 |     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:61:21
+  --> $DIR/wrong_self_convention.rs:46:21
    |
-61 |     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:62:19
+  --> $DIR/wrong_self_convention.rs:47:19
    |
-62 |     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:63:19
+  --> $DIR/wrong_self_convention.rs:48:19
    |
-63 |     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:64:21
+  --> $DIR/wrong_self_convention.rs:49:21
    |
-64 |     pub fn from_i64(self) {}
+LL |     pub fn from_i64(self) {}
    |                     ^^^^
 
 error: aborting due to 12 previous errors