Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
1.0-beta-4
-
None
-
None
Description
This code
try {
println("try");
} finally {
println("finally");
}
prints
try
finally
this code prints nothing
try {
//println("try");
} finally {
println("finally");
}