54f78a2920
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.
6 lines
94 B
Kotlin
Vendored
6 lines
94 B
Kotlin
Vendored
import java.util.ArrayList
|
|
|
|
fun foo() {
|
|
val a = ArrayList<String>()
|
|
<caret>val x = 5
|
|
} |