17b5e46547
The body of the InlinedLocalFunctionDeclarationInstruction was not copied. That confuses the information on the exceptional edge with the information on the normal edge. ^KT-52131 Fixed
11 lines
125 B
Kotlin
Vendored
11 lines
125 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
|
|
fun foo(): Int {
|
|
var result = 0
|
|
try {
|
|
} finally {
|
|
42.let { }
|
|
}
|
|
return result
|
|
}
|