about summary refs log tree commit diff
path: root/src/test/ui/for-loop-while/while.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/for-loop-while/while.rs')
-rw-r--r--src/test/ui/for-loop-while/while.rs13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/test/ui/for-loop-while/while.rs b/src/test/ui/for-loop-while/while.rs
deleted file mode 100644
index 90f718a3483..00000000000
--- a/src/test/ui/for-loop-while/while.rs
+++ /dev/null
@@ -1,13 +0,0 @@
-// 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);
-    }
-}