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

8 lines
154 B
Kotlin

trait Expr
class Sum(val left : Expr, val right : Expr) : Expr
fun evalWhen(e : Expr) : Int = when (e) {
is Sum -> e.<caret>
}
// EXIST: left, right