about summary refs log tree commit diff
path: root/tests/ui/for-loop-while/while.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/for-loop-while/while.rs')
-rw-r--r--tests/ui/for-loop-while/while.rs13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/ui/for-loop-while/while.rs b/tests/ui/for-loop-while/while.rs
new file mode 100644
index 00000000000..90f718a3483
--- /dev/null
+++ b/tests/ui/for-loop-while/while.rs
@@ -0,0 +1,13 @@
+// run-pass
+
+
+pub fn main() {
+    let mut x: isize = 10;
+    let mut y: isize = 0;
+    while y < x { println!("{}", y); println!("hello"); y = y + 1; }
+    while x > 0 {
+        println!("goodbye");
+        x = x - 1;
+        println!("{}", x);
+    }
+}