Files
kotlin-fork/compiler/testData/diagnostics/tests/prefixIncSmartCast.fir.kt
T
2023-03-21 08:48:38 +00:00

14 lines
181 B
Kotlin
Vendored

// Changed in K2, see KT-57178
open class I {
operator fun inc(): ST = ST()
}
class ST : I()
fun main() {
var local = I()
val x: ST = ++local
val y: ST = local
}