about summary refs log tree commit diff
path: root/src/test/ui/for-loop-while/while-cont.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/for-loop-while/while-cont.rs')
-rw-r--r--src/test/ui/for-loop-while/while-cont.rs11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/test/ui/for-loop-while/while-cont.rs b/src/test/ui/for-loop-while/while-cont.rs
deleted file mode 100644
index a864e8ef70a..00000000000
--- a/src/test/ui/for-loop-while/while-cont.rs
+++ /dev/null
@@ -1,11 +0,0 @@
-// run-pass
-// Issue #825: Should recheck the loop condition after continuing
-pub fn main() {
-    let mut i = 1;
-    while i > 0 {
-        assert!((i > 0));
-        println!("{}", i);
-        i -= 1;
-        continue;
-    }
-}