rust-clippy/tests/ui/unused_self.stderr

77 lines
2.2 KiB
Text
Raw Normal View History

2019-10-03 19:09:32 +00:00
error: unused `self` argument
--> $DIR/unused_self.rs:11:29
|
LL | fn unused_self_move(self) {}
| ^^^^
|
= help: consider refactoring to an associated function
2022-09-22 16:04:22 +00:00
= note: `-D clippy::unused-self` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::unused_self)]`
2019-10-03 19:09:32 +00:00
error: unused `self` argument
--> $DIR/unused_self.rs:13:28
2019-10-03 19:09:32 +00:00
|
LL | fn unused_self_ref(&self) {}
| ^^^^^
|
= help: consider refactoring to an associated function
2019-10-03 19:09:32 +00:00
error: unused `self` argument
--> $DIR/unused_self.rs:15:32
2019-10-03 19:09:32 +00:00
|
LL | fn unused_self_mut_ref(&mut self) {}
| ^^^^^^^^^
|
= help: consider refactoring to an associated function
2019-10-03 19:09:32 +00:00
error: unused `self` argument
--> $DIR/unused_self.rs:17:32
2019-10-03 19:09:32 +00:00
|
LL | fn unused_self_pin_ref(self: Pin<&Self>) {}
| ^^^^
|
= help: consider refactoring to an associated function
2019-10-03 19:09:32 +00:00
error: unused `self` argument
--> $DIR/unused_self.rs:19:36
2019-10-03 19:09:32 +00:00
|
LL | fn unused_self_pin_mut_ref(self: Pin<&mut Self>) {}
| ^^^^
|
= help: consider refactoring to an associated function
2019-10-03 19:09:32 +00:00
error: unused `self` argument
--> $DIR/unused_self.rs:21:35
2019-10-03 19:09:32 +00:00
|
LL | fn unused_self_pin_nested(self: Pin<Arc<Self>>) {}
| ^^^^
|
= help: consider refactoring to an associated function
2019-10-03 19:09:32 +00:00
error: unused `self` argument
--> $DIR/unused_self.rs:23:28
2019-10-03 19:09:32 +00:00
|
LL | fn unused_self_box(self: Box<Self>) {}
| ^^^^
|
= help: consider refactoring to an associated function
2019-10-03 19:09:32 +00:00
error: unused `self` argument
--> $DIR/unused_self.rs:25:40
2019-10-03 19:09:32 +00:00
|
LL | fn unused_with_other_used_args(&self, x: u8, y: u8) -> u8 {
| ^^^^^
|
= help: consider refactoring to an associated function
2019-10-03 19:09:32 +00:00
error: unused `self` argument
--> $DIR/unused_self.rs:29:37
2019-10-03 19:09:32 +00:00
|
LL | fn unused_self_class_method(&self) {
| ^^^^^
|
= help: consider refactoring to an associated function
2019-10-03 19:09:32 +00:00
error: aborting due to 9 previous errors