Files
kotlin-fork/compiler/testData/codegen/box/regressions/kt3587.kt
T
Alexander Udalov a6d759ff96 Minor, add test for obsolete issue
#KT-3587 Obsolete
2014-11-25 23:16:56 +03:00

11 lines
201 B
Kotlin

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