Files
kotlin-fork/compiler/testData/diagnostics/tests/smartCasts/incDecToNull.fir.kt
T

11 lines
126 B
Kotlin
Vendored

class IncDec {
operator fun inc(): Unit {}
}
fun foo(): IncDec {
var x = IncDec()
x = x++
x++
return x
}