Files
kotlin-fork/idea/idea-completion/testData/basic/common/smartCast/SmartCastInWhen.kt
T
2015-08-14 18:10:40 +03:00

8 lines
154 B
Kotlin
Vendored

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