7bd9c52732
In such expressions, `KtCallExpression` wraps `KtSimpleNameExpression`, so `getQualifiedExpressionForSelector()` returns `null` Also, enable tests that are fixed by this
14 lines
172 B
Kotlin
Vendored
14 lines
172 B
Kotlin
Vendored
// FIR_COMPARISON
|
|
|
|
class Expr {}
|
|
class Num : Expr() {
|
|
fun testing() {}
|
|
}
|
|
|
|
fun eval(e : Expr) {
|
|
if (e is Num) {
|
|
return e.<caret>()
|
|
}
|
|
}
|
|
|
|
// EXIST: testing |