diff options
| author | Obei Sideg <obei.sideg@gmail.com> | 2024-08-24 06:49:09 +0300 |
|---|---|---|
| committer | Obei Sideg <obei.sideg@gmail.com> | 2024-09-13 14:10:56 +0300 |
| commit | 3b0ce1bc33d30d7d116ee9af60df873e04bd74dc (patch) | |
| tree | d6f3aef62b82ac74c47a292c38caee216e56c77b /tests/ui/methods/method-self-arg.rs | |
| parent | 74cab947f79045e34eb973199274ee5f3c132bd8 (diff) | |
| download | rust-3b0ce1bc33d30d7d116ee9af60df873e04bd74dc.tar.gz rust-3b0ce1bc33d30d7d116ee9af60df873e04bd74dc.zip | |
Update tests for hidden references to mutable static
Diffstat (limited to 'tests/ui/methods/method-self-arg.rs')
| -rw-r--r-- | tests/ui/methods/method-self-arg.rs | 3 |
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)] |
