Files
kotlin-fork/idea/idea-completion/testData/basic/common/smartCast/SmartCastAfterIf.kt
T

16 lines
163 B
Kotlin
Vendored

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