Files
kotlin/compiler/testData/codegen/bytecodeText/capturedVarsOptimization/capturedInChainOfInlineFuns.kt
2018-12-21 16:20:45 +01:00

16 lines
185 B
Kotlin
Vendored

// IGNORE_BACKEND: JVM_IR
fun test() {
var x = 0
run {
run {
run {
++x
}
}
}
}
// 0 NEW
// 0 GETFIELD
// 0 PUTFIELD