Files
kotlin-fork/compiler/testData/codegen/box/regressions/kt3587.kt
T
2018-06-14 19:54:30 +03:00

11 lines
201 B
Kotlin
Vendored

open class Variable {
val lightVar: LightVariable = if (this is LightVariable) this else LightVariable()
}
class LightVariable() : Variable()
fun box(): String {
Variable()
return "OK"
}