Files
kotlin-fork/compiler/testData/codegen/box/regressions/kt4281.kt
T
2015-03-04 17:27:55 +01:00

16 lines
216 B
Kotlin

abstract class C {
fun test(x: Int) {
if (x == 0) return
if (this is D) {
(this: D).test(x - 1)
}
}
}
class D: C()
fun box(): String {
D().test(10)
return "OK"
}