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

12 lines
153 B
Kotlin
Vendored

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