about summary refs log tree commit diff
path: root/tests/ui/binding/pattern-bound-var-in-for-each.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/binding/pattern-bound-var-in-for-each.rs')
-rw-r--r--tests/ui/binding/pattern-bound-var-in-for-each.rs20
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/ui/binding/pattern-bound-var-in-for-each.rs b/tests/ui/binding/pattern-bound-var-in-for-each.rs
new file mode 100644
index 00000000000..3f725cddc5b
--- /dev/null
+++ b/tests/ui/binding/pattern-bound-var-in-for-each.rs
@@ -0,0 +1,20 @@
+// run-pass
+// Tests that codegen_path checks whether a
+// pattern-bound var is an upvar (when codegenning
+// the for-each body)
+
+
+fn foo(src: usize) {
+
+    match Some(src) {
+      Some(src_id) => {
+        for _i in 0_usize..10_usize {
+            let yyy = src_id;
+            assert_eq!(yyy, 0_usize);
+        }
+      }
+      _ => { }
+    }
+}
+
+pub fn main() { foo(0_usize); }