summaryrefslogtreecommitdiffstats
path: root/src/test/ui/borrowck/borrowck-move-from-subpath-of-borrowed-path.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/borrowck/borrowck-move-from-subpath-of-borrowed-path.rs')
-rw-r--r--src/test/ui/borrowck/borrowck-move-from-subpath-of-borrowed-path.rs17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/test/ui/borrowck/borrowck-move-from-subpath-of-borrowed-path.rs b/src/test/ui/borrowck/borrowck-move-from-subpath-of-borrowed-path.rs
deleted file mode 100644
index 71405f7a7..000000000
--- a/src/test/ui/borrowck/borrowck-move-from-subpath-of-borrowed-path.rs
+++ /dev/null
@@ -1,17 +0,0 @@
-// verify that an error is raised when trying to move out of a
-// borrowed path.
-
-
-
-
-
-fn main() {
- let a: Box<Box<_>> = Box::new(Box::new(2));
- let b = &a;
-
- let z = *a; //~ ERROR: cannot move out of `*a` because it is borrowed
- b.use_ref();
-}
-
-trait Fake { fn use_mut(&mut self) { } fn use_ref(&self) { } }
-impl<T> Fake for T { }