Files
kotlin-fork/idea/idea-completion/testData/basic/common/BeforeDotInCall.kt
T
Roman Golyshev 75ed167566 FIR IDE: Use FirModuleResolveState instead of TowerDataContextProvider
This way we will have a single place to get information about scopes,
so in the future it would be easier to refactor it
2021-01-27 08:02:53 +00:00

20 lines
263 B
Kotlin
Vendored

// FIR_COMPARISON
package testing
fun testTop() {
}
class TestSample() {
fun main(args : Array<String>) {
val testVar = ""
test<caret>.testFun()
}
fun testFun() {
}
}
// INVOCATION_COUNT: 2
// EXIST: testVar, testFun, testTop