Files
kotlin-fork/idea/idea-completion/testData/basic/common/AfterIntSeparatedWithComments.kt
T
Roman Golyshev 7bd9c52732 FIR Completion: Fix completion in function calls (foo.bar<caret>())
In such expressions, `KtCallExpression` wraps `KtSimpleNameExpression`,
so `getQualifiedExpressionForSelector()` returns `null`

Also, enable tests that are fixed by this
2020-09-09 13:14:08 +03:00

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