From 0125532106bceab9dcf7ffd81e8a351c587f53c4 Mon Sep 17 00:00:00 2001 From: Jesse Ruderman Date: Sat, 24 Sep 2011 16:13:32 -0700 Subject: [PATCH] Don't iloop (future-proof test against improved reachability computations) --- src/test/compile-fail/do-while-pred-constraints.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/compile-fail/do-while-pred-constraints.rs b/src/test/compile-fail/do-while-pred-constraints.rs index 49e7ec220bb..60d8dd4fae1 100644 --- a/src/test/compile-fail/do-while-pred-constraints.rs +++ b/src/test/compile-fail/do-while-pred-constraints.rs @@ -9,6 +9,6 @@ fn main() { check (even(y)); do { print_even(y); - do { do { do { y += 1; } while true } while true } while true + do { do { do { y += 1; } while false } while false } while false } while true }