about summary refs log tree commit diff
path: root/tests/ui/consts/write-to-static-mut-in-static.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/consts/write-to-static-mut-in-static.rs')
-rw-r--r--tests/ui/consts/write-to-static-mut-in-static.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ui/consts/write-to-static-mut-in-static.rs b/tests/ui/consts/write-to-static-mut-in-static.rs
index 43c63fed8ce..a2985d05a79 100644
--- a/tests/ui/consts/write-to-static-mut-in-static.rs
+++ b/tests/ui/consts/write-to-static-mut-in-static.rs
@@ -3,8 +3,8 @@ pub static mut B: () = unsafe { A = 1; };
 //~^ ERROR could not evaluate static initializer
 
 pub static mut C: u32 = unsafe { C = 1; 0 };
-//~^ ERROR cycle detected
 
 pub static D: u32 = D;
+//~^ ERROR could not evaluate static initializer
 
 fn main() {}