mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
76 lines
2.2 KiB
Text
76 lines
2.2 KiB
Text
error: unused `self` argument
|
|
--> tests/ui/unused_self.rs:11:29
|
|
|
|
|
LL | fn unused_self_move(self) {}
|
|
| ^^^^
|
|
|
|
|
= help: consider refactoring to an associated function
|
|
= note: `-D clippy::unused-self` implied by `-D warnings`
|
|
= help: to override `-D warnings` add `#[allow(clippy::unused_self)]`
|
|
|
|
error: unused `self` argument
|
|
--> tests/ui/unused_self.rs:13:28
|
|
|
|
|
LL | fn unused_self_ref(&self) {}
|
|
| ^^^^^
|
|
|
|
|
= help: consider refactoring to an associated function
|
|
|
|
error: unused `self` argument
|
|
--> tests/ui/unused_self.rs:15:32
|
|
|
|
|
LL | fn unused_self_mut_ref(&mut self) {}
|
|
| ^^^^^^^^^
|
|
|
|
|
= help: consider refactoring to an associated function
|
|
|
|
error: unused `self` argument
|
|
--> tests/ui/unused_self.rs:17:32
|
|
|
|
|
LL | fn unused_self_pin_ref(self: Pin<&Self>) {}
|
|
| ^^^^
|
|
|
|
|
= help: consider refactoring to an associated function
|
|
|
|
error: unused `self` argument
|
|
--> tests/ui/unused_self.rs:19:36
|
|
|
|
|
LL | fn unused_self_pin_mut_ref(self: Pin<&mut Self>) {}
|
|
| ^^^^
|
|
|
|
|
= help: consider refactoring to an associated function
|
|
|
|
error: unused `self` argument
|
|
--> tests/ui/unused_self.rs:21:35
|
|
|
|
|
LL | fn unused_self_pin_nested(self: Pin<Arc<Self>>) {}
|
|
| ^^^^
|
|
|
|
|
= help: consider refactoring to an associated function
|
|
|
|
error: unused `self` argument
|
|
--> tests/ui/unused_self.rs:23:28
|
|
|
|
|
LL | fn unused_self_box(self: Box<Self>) {}
|
|
| ^^^^
|
|
|
|
|
= help: consider refactoring to an associated function
|
|
|
|
error: unused `self` argument
|
|
--> tests/ui/unused_self.rs:25:40
|
|
|
|
|
LL | fn unused_with_other_used_args(&self, x: u8, y: u8) -> u8 {
|
|
| ^^^^^
|
|
|
|
|
= help: consider refactoring to an associated function
|
|
|
|
error: unused `self` argument
|
|
--> tests/ui/unused_self.rs:29:37
|
|
|
|
|
LL | fn unused_self_class_method(&self) {
|
|
| ^^^^^
|
|
|
|
|
= help: consider refactoring to an associated function
|
|
|
|
error: aborting due to 9 previous errors
|
|
|