[IR] update testdata
This commit is contained in:
committed by
teamcityserver
parent
6a1ab1b325
commit
fc5c674c60
+6
-6
@@ -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 */
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user