about summary refs log tree commit diff
path: root/src/test/run-pass/while-loop-constraints-2.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/run-pass/while-loop-constraints-2.rs')
-rw-r--r--src/test/run-pass/while-loop-constraints-2.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/run-pass/while-loop-constraints-2.rs b/src/test/run-pass/while-loop-constraints-2.rs
index 7b5cd095849..de87a40a61f 100644
--- a/src/test/run-pass/while-loop-constraints-2.rs
+++ b/src/test/run-pass/while-loop-constraints-2.rs
@@ -16,7 +16,7 @@ pub fn main() {
     while z < 50 {
         z += 1;
         while false { x = y; y = z; }
-        debug!(y);
+        info!(y);
     }
     assert!((y == 42 && z == 50));
 }