summaryrefslogtreecommitdiffstats
path: root/src/test/ui/trivial-bounds/trivial-bounds-inconsistent-copy-reborrow.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/trivial-bounds/trivial-bounds-inconsistent-copy-reborrow.rs')
-rw-r--r--src/test/ui/trivial-bounds/trivial-bounds-inconsistent-copy-reborrow.rs13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/test/ui/trivial-bounds/trivial-bounds-inconsistent-copy-reborrow.rs b/src/test/ui/trivial-bounds/trivial-bounds-inconsistent-copy-reborrow.rs
deleted file mode 100644
index b1ff23fd0..000000000
--- a/src/test/ui/trivial-bounds/trivial-bounds-inconsistent-copy-reborrow.rs
+++ /dev/null
@@ -1,13 +0,0 @@
-// Check that reborrows are still illegal with Copy mutable references
-#![feature(trivial_bounds)]
-#![allow(unused)]
-
-fn reborrow_mut<'a>(t: &'a &'a mut i32) -> &'a mut i32 where &'a mut i32: Copy {
- *t //~ ERROR
-}
-
-fn copy_reborrow_mut<'a>(t: &'a &'a mut i32) -> &'a mut i32 where &'a mut i32: Copy {
- {*t} //~ ERROR
-}
-
-fn main() {}