[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
@@ -1,7 +1,7 @@
val test: Unit
field = try { // BLOCK
}
catch (...) { // BLOCK
catch (e: Throwable){ // BLOCK
}
get
@@ -13,7 +13,7 @@ fun box(): String {
try { // BLOCK
f() /*~> Unit */
}
catch (...) { // BLOCK
catch (e: Exception){ // BLOCK
result = "OK"
}