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

15 lines
141 B
Kotlin

trait Expr
class Num(val value : Int) : Expr
fun eval(e : Expr) {
if (e is Num) {
return e.<caret>
}
}
// EXIST: value