Files
kotlin-fork/idea/testData/completion/basic/common/SmartCastForThis.kt
T
2014-10-01 18:52:52 +04:00

11 lines
166 B
Kotlin

trait Expr {
public fun testThis() {
if (this is Num) {
this.<caret>
}
}
}
class Num(val toCheck : Int) : Expr
// EXIST: toCheck