Files
kotlin-fork/j2k/tests/testData/ast/localVariable/autoBangBang.kt
T

4 lines
46 B
Kotlin

fun foo(i: Int?) {
var i1 = i!!
i1++
}