summaryrefslogtreecommitdiff
path: root/tests/ui/drop
diff options
context:
space:
mode:
authorUrgau <urgau@numericable.fr>2023-05-19 11:25:35 +0200
committerUrgau <urgau@numericable.fr>2023-05-21 14:16:41 +0200
commitc93d9c1794eb8d57fd2f108547192c3aeb92b505 (patch)
tree4595f3edcf388590e6aeb4839c45a123c8b9ffc2 /tests/ui/drop
parent85a18289431d245437d80b3006ec499c23e62400 (diff)
Rename `drop_ref` lint to `dropping_references`
Diffstat (limited to 'tests/ui/drop')
-rw-r--r--tests/ui/drop/repeat-drop.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ui/drop/repeat-drop.rs b/tests/ui/drop/repeat-drop.rs
index a52900311ea..0afb4bb11bc 100644
--- a/tests/ui/drop/repeat-drop.rs
+++ b/tests/ui/drop/repeat-drop.rs
@@ -1,7 +1,7 @@
// run-pass
// needs-unwind
-#![allow(drop_ref, dropping_copy_types)]
+#![allow(dropping_references, dropping_copy_types)]
static mut CHECK: usize = 0;