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.rs10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/tools/clippy/tests/ui/unused_self.rs b/src/tools/clippy/tests/ui/unused_self.rs
index 92e8e1dba..55bd56071 100644
--- a/src/tools/clippy/tests/ui/unused_self.rs
+++ b/src/tools/clippy/tests/ui/unused_self.rs
@@ -60,6 +60,16 @@ mod unused_self_allow {
// shouldn't trigger for public methods
pub fn unused_self_move(self) {}
}
+
+ pub struct E;
+
+ impl E {
+ // shouldn't trigger if body contains todo!()
+ pub fn unused_self_todo(self) {
+ let x = 42;
+ todo!()
+ }
+ }
}
pub use unused_self_allow::D;