summaryrefslogtreecommitdiffstats
path: root/src/test/ui/consts/write-to-static-mut-in-static.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/consts/write-to-static-mut-in-static.rs')
-rw-r--r--src/test/ui/consts/write-to-static-mut-in-static.rs10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/test/ui/consts/write-to-static-mut-in-static.rs b/src/test/ui/consts/write-to-static-mut-in-static.rs
deleted file mode 100644
index 43c63fed8..000000000
--- a/src/test/ui/consts/write-to-static-mut-in-static.rs
+++ /dev/null
@@ -1,10 +0,0 @@
-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() {}