about summary refs log tree commit diff
path: root/tests/ui/for-loop-while/foreach-external-iterators-nested.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/for-loop-while/foreach-external-iterators-nested.rs')
-rw-r--r--tests/ui/for-loop-while/foreach-external-iterators-nested.rs15
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/ui/for-loop-while/foreach-external-iterators-nested.rs b/tests/ui/for-loop-while/foreach-external-iterators-nested.rs
new file mode 100644
index 00000000000..8a95f160a1a
--- /dev/null
+++ b/tests/ui/for-loop-while/foreach-external-iterators-nested.rs
@@ -0,0 +1,15 @@
+// run-pass
+
+pub fn main() {
+    let x = [1; 100];
+    let y = [2; 100];
+    let mut p = 0;
+    let mut q = 0;
+    for i in &x[..] {
+        for j in &y[..] {
+            p += *j;
+        }
+        q += *i + p;
+    }
+    assert_eq!(q, 1010100);
+}