summaryrefslogtreecommitdiffstats
path: root/src/test/ui/for-loop-while/while.rs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/test/ui/for-loop-while/while.rs13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/test/ui/for-loop-while/while.rs b/src/test/ui/for-loop-while/while.rs
new file mode 100644
index 000000000..90f718a34
--- /dev/null
+++ b/src/test/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);
+ }
+}