Put default value to vars iff they are not boxed
#KT-24672 Fixed
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
// IGNORE_BACKEND: JVM_IR
|
||||
|
||||
import kotlin.contracts.ExperimentalContracts
|
||||
import kotlin.contracts.InvocationKind
|
||||
import kotlin.contracts.contract
|
||||
|
||||
@ExperimentalContracts
|
||||
fun test(): Char {
|
||||
var c: Char
|
||||
doIt {
|
||||
c = ' '
|
||||
}
|
||||
return c
|
||||
}
|
||||
|
||||
@ExperimentalContracts
|
||||
fun doIt(block: () -> Unit) {
|
||||
contract {
|
||||
callsInPlace(block, InvocationKind.EXACTLY_ONCE)
|
||||
}
|
||||
block()
|
||||
}
|
||||
|
||||
// 0 ISTORE 0
|
||||
// 1 LOCALVARIABLE c Lkotlin/jvm/internal/Ref\$CharRef; L1 L3 0
|
||||
Reference in New Issue
Block a user