summaryrefslogtreecommitdiffstats
path: root/src/test/ui/borrowck/borrowck-move-subcomponent.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/borrowck/borrowck-move-subcomponent.rs')
-rw-r--r--src/test/ui/borrowck/borrowck-move-subcomponent.rs17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/test/ui/borrowck/borrowck-move-subcomponent.rs b/src/test/ui/borrowck/borrowck-move-subcomponent.rs
deleted file mode 100644
index 38abd1932..000000000
--- a/src/test/ui/borrowck/borrowck-move-subcomponent.rs
+++ /dev/null
@@ -1,17 +0,0 @@
-// Tests that the borrow checker checks all components of a path when moving
-// out.
-
-
-
-struct S {
- x : Box<isize>
-}
-
-fn f<T>(_: T) {}
-
-fn main() {
- let a : S = S { x : Box::new(1) };
- let pb = &a;
- let S { x: ax } = a; //~ ERROR cannot move out
- f(pb);
-}