about summary refs log tree commit diff
path: root/tests/ui/methods/method-self-arg.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/methods/method-self-arg.rs')
-rw-r--r--tests/ui/methods/method-self-arg.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/ui/methods/method-self-arg.rs b/tests/ui/methods/method-self-arg.rs
index d26b9663fd0..2e058ee1077 100644
--- a/tests/ui/methods/method-self-arg.rs
+++ b/tests/ui/methods/method-self-arg.rs
@@ -1,6 +1,9 @@
 //@ run-pass
 // Test method calls with self as an argument
 
+// FIXME(static_mut_refs): Do not allow `static_mut_refs` lint
+#![allow(static_mut_refs)]
+
 static mut COUNT: usize = 1;
 
 #[derive(Copy, Clone)]