[IR] update testdata: print a parameter in catch

This commit is contained in:
Zalim Bashorov
2020-11-10 03:52:31 +03:00
committed by teamcityserver
parent 2775c89ebb
commit 64b42401a1
5 changed files with 6 additions and 6 deletions
+2 -2
View File
@@ -2,7 +2,7 @@ fun test1() {
try { // BLOCK
println()
}
catch (...) { // BLOCK
catch (e: Throwable){ // BLOCK
println()
}
finally { // BLOCK
@@ -15,7 +15,7 @@ fun test2(): Int {
println()
42
}
catch (...) { // BLOCK
catch (e: Throwable){ // BLOCK
println()
24
}