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

4 lines
46 B
Kotlin
Vendored

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