about summary refs log tree commit diff
path: root/tests/ui/static/reference-to-mut-static-safe.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/static/reference-to-mut-static-safe.rs')
-rw-r--r--tests/ui/static/reference-to-mut-static-safe.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ui/static/reference-to-mut-static-safe.rs b/tests/ui/static/reference-to-mut-static-safe.rs
index de4f4be8f76..98afdadf4d2 100644
--- a/tests/ui/static/reference-to-mut-static-safe.rs
+++ b/tests/ui/static/reference-to-mut-static-safe.rs
@@ -8,6 +8,6 @@ fn main() {
 
     let _x = &X;
     //[e2024]~^ creating a shared reference to a mutable static [E0796]
-    //[e2021]~^^ use of mutable static is unsafe and requires unsafe function or block [E0133]
+    //~^^ use of mutable static is unsafe and requires unsafe
     //[e2021]~^^^ shared reference to mutable static is discouraged [static_mut_refs]
 }