Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
1.0-beta-8
-
None
-
None
-
WinXP Home
Description
===== Script: =====
def test() {
println "got here"
throw new Exception("blah")
}
[1,2,3,4,5].each {
test()
}
===== Expected Output: =====
got here
<stack trace>
===== Actual Output: =====
got here
got here
<stack trace>