Files
kotlin-fork/idea/testData/checker/codeFragments/privateMembers.kt
T
Yan Zhulanow 54f78a2920 Debugger: Remove debugger-related hacks in resolution
Candidate ordering should be the same in ordinary Kotlin code and in evaluated expressions.
With the invention of 'foo_field' syntax, there is no need to do these nasty things any more.
2019-07-08 16:25:16 +09:00

6 lines
94 B
Kotlin
Vendored

import java.util.ArrayList
fun foo() {
val a = ArrayList<String>()
<caret>val x = 5
}