[IR] update testdata

This commit is contained in:
Zalim Bashorov
2020-11-05 23:40:21 +03:00
committed by teamcityserver
parent 6a1ab1b325
commit fc5c674c60
94 changed files with 354 additions and 354 deletions
+6 -6
View File
@@ -1,25 +1,25 @@
fun test1() {
try { //BLOCK
try { // BLOCK
println()
}
catch (...) { //BLOCK
catch (...) { // BLOCK
println()
}
finally { //BLOCK
finally { // BLOCK
println()
}
}
fun test2(): Int {
return try { //BLOCK
return try { // BLOCK
println()
42
}
catch (...) { //BLOCK
catch (...) { // BLOCK
println()
24
}
finally { //BLOCK
finally { // BLOCK
println()
555 /*~> Unit */
}