KT-12299 Completion: incorrect priority of property foo over method getFoo in Kotlin-only code
#KT-12299 Fixed
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
package test
|
||||
|
||||
class A {
|
||||
val foo = 42
|
||||
|
||||
fun getFoo() = ""
|
||||
|
||||
fun test() {
|
||||
getF<caret>
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
// ORDER: getFoo
|
||||
// ORDER: getFaa
|
||||
// ORDER: foo
|
||||
Reference in New Issue
Block a user