Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
1.0-beta-4
-
None
-
None
Description
a = 1
b = 5
for (i in a..b)
println i
a = i
produces:
Exception in thread "main" java.lang.VerifyError: (class: test, method: run signature: ()Ljava/lang/Object Accessing value from uninitialized register 4
Is i is too tightly scoped?