diff options
Diffstat (limited to 'test/482-checker-loop-back-edge-use/src/Main.java')
-rw-r--r-- | test/482-checker-loop-back-edge-use/src/Main.java | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/482-checker-loop-back-edge-use/src/Main.java b/test/482-checker-loop-back-edge-use/src/Main.java index f8f0aa3f0a..65dfd411fd 100644 --- a/test/482-checker-loop-back-edge-use/src/Main.java +++ b/test/482-checker-loop-back-edge-use/src/Main.java @@ -115,7 +115,9 @@ public class Main { // 'incoming' must have a use only at the first loop's back edge. for (long i = System.nanoTime(); i < 42; ++i) { System.out.println(incoming); - for (long j = System.currentTimeMillis(); j != 42; ++j) {} + for (long j = System.currentTimeMillis(); j != 42; ++j) { + System.out.print(j); // non-empty body + } } } |