439e158fb2
BasicCompletionWeigherTestGenerated$ExpectedInfo.testPreferMatchingThis Looks like IDEA now rearranges elements with same weight by length and then alphabetically
14 lines
217 B
Kotlin
Vendored
14 lines
217 B
Kotlin
Vendored
interface X
|
|
|
|
open class Y : X {
|
|
open inner class Inner {
|
|
fun Any.foo(): X {
|
|
if (this@Inner is X) return this@<caret>
|
|
}
|
|
}
|
|
}
|
|
|
|
// ORDER: this@Y
|
|
// ORDER: this@Inner
|
|
// ORDER: this@foo
|