Files
kotlin-fork/idea/idea-completion/testData/basic/common/smartCast/SmartCastAfterIf.kt
T
2015-09-22 15:00:24 +02:00

15 lines
145 B
Kotlin
Vendored

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