summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/unused_self.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/clippy/tests/ui/unused_self.rs')
-rw-r--r--src/tools/clippy/tests/ui/unused_self.rs9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/tools/clippy/tests/ui/unused_self.rs b/src/tools/clippy/tests/ui/unused_self.rs
index 55bd56071..d3d06037c 100644
--- a/src/tools/clippy/tests/ui/unused_self.rs
+++ b/src/tools/clippy/tests/ui/unused_self.rs
@@ -9,16 +9,25 @@ mod unused_self {
impl A {
fn unused_self_move(self) {}
+ //~^ ERROR: unused `self` argument
fn unused_self_ref(&self) {}
+ //~^ ERROR: unused `self` argument
fn unused_self_mut_ref(&mut self) {}
+ //~^ ERROR: unused `self` argument
fn unused_self_pin_ref(self: Pin<&Self>) {}
+ //~^ ERROR: unused `self` argument
fn unused_self_pin_mut_ref(self: Pin<&mut Self>) {}
+ //~^ ERROR: unused `self` argument
fn unused_self_pin_nested(self: Pin<Arc<Self>>) {}
+ //~^ ERROR: unused `self` argument
fn unused_self_box(self: Box<Self>) {}
+ //~^ ERROR: unused `self` argument
fn unused_with_other_used_args(&self, x: u8, y: u8) -> u8 {
+ //~^ ERROR: unused `self` argument
x + y
}
fn unused_self_class_method(&self) {
+ //~^ ERROR: unused `self` argument
Self::static_method();
}