summaryrefslogtreecommitdiffstats
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.rs10
1 files changed, 10 insertions, 0 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
new file mode 100644
index 000000000..43c63fed8
--- /dev/null
+++ b/tests/ui/consts/write-to-static-mut-in-static.rs
@@ -0,0 +1,10 @@
+pub static mut A: u32 = 0;
+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;
+
+fn main() {}