7bd9c52732
In such expressions, `KtCallExpression` wraps `KtSimpleNameExpression`, so `getQualifiedExpressionForSelector()` returns `null` Also, enable tests that are fixed by this
11 lines
138 B
Kotlin
Vendored
11 lines
138 B
Kotlin
Vendored
// FIR_COMPARISON
|
|
|
|
infix fun Int.func(s: String): Int{}
|
|
|
|
fun test() {
|
|
val floor = "Floor"
|
|
val a = 1/**/f<caret>
|
|
}
|
|
|
|
// EXIST: func
|