summaryrefslogtreecommitdiffstats
path: root/src/test/ui/borrowck/borrowck-for-loop-correct-cmt-for-pattern.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/borrowck/borrowck-for-loop-correct-cmt-for-pattern.rs')
-rw-r--r--src/test/ui/borrowck/borrowck-for-loop-correct-cmt-for-pattern.rs24
1 files changed, 0 insertions, 24 deletions
diff --git a/src/test/ui/borrowck/borrowck-for-loop-correct-cmt-for-pattern.rs b/src/test/ui/borrowck/borrowck-for-loop-correct-cmt-for-pattern.rs
deleted file mode 100644
index 389b8a43c..000000000
--- a/src/test/ui/borrowck/borrowck-for-loop-correct-cmt-for-pattern.rs
+++ /dev/null
@@ -1,24 +0,0 @@
-// Issue #16205.
-
-
-
-struct Foo {
- a: [Box<isize>; 3],
-}
-
-fn main() {
- let mut y = 1;
- let x = Some(&mut y);
- for &a in x.iter() { //~ ERROR cannot move out
- }
-
- let f = Foo {
- a: [Box::new(3), Box::new(4), Box::new(5)],
- };
- for &a in &f.a { //~ ERROR cannot move out
- }
-
- let x: Option<Box<_>> = Some(Box::new(1));
- for &a in x.iter() { //~ ERROR cannot move out
- }
-}