about summary refs log tree commit diff
path: root/src/test/compile-fail/block-must-not-have-result-for.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/compile-fail/block-must-not-have-result-for.rs')
-rw-r--r--src/test/compile-fail/block-must-not-have-result-for.rs4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/test/compile-fail/block-must-not-have-result-for.rs b/src/test/compile-fail/block-must-not-have-result-for.rs
index 778309122cb..1aa05a9477d 100644
--- a/src/test/compile-fail/block-must-not-have-result-for.rs
+++ b/src/test/compile-fail/block-must-not-have-result-for.rs
@@ -8,10 +8,8 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-use std::vec;
-
 fn main() {
-    for vec::each(~[0]) |_i| {  //~ ERROR A for-loop body must return (), but
+    for 2.times {  //~ ERROR A for-loop body must return (), but
         true
     }
 }