summaryrefslogtreecommitdiffstats
path: root/src/test/ui/consts/issue-17718-const-borrow.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/consts/issue-17718-const-borrow.rs')
-rw-r--r--src/test/ui/consts/issue-17718-const-borrow.rs14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/test/ui/consts/issue-17718-const-borrow.rs b/src/test/ui/consts/issue-17718-const-borrow.rs
deleted file mode 100644
index 89316dbd5..000000000
--- a/src/test/ui/consts/issue-17718-const-borrow.rs
+++ /dev/null
@@ -1,14 +0,0 @@
-use std::cell::UnsafeCell;
-
-const A: UnsafeCell<usize> = UnsafeCell::new(1);
-const B: &'static UnsafeCell<usize> = &A;
-//~^ ERROR: cannot refer to interior mutable
-
-struct C { a: UnsafeCell<usize> }
-const D: C = C { a: UnsafeCell::new(1) };
-const E: &'static UnsafeCell<usize> = &D.a;
-//~^ ERROR: cannot refer to interior mutable
-const F: &'static C = &D;
-//~^ ERROR: cannot refer to interior mutable
-
-fn main() {}