Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Won't Fix
-
1.7-beta-1
-
None
-
None
-
jdk6u10
Description
(1..3).each { println it } /* yield 1 2 3 */
But when the range expression is not embraced with brackets
1..3.each { println it } /* yield 3 */
The issue also exists when we use ..<
Thanks for your investigating the issue.