90750483ee
- This should not affect the performance of the completion, since all object extensions are collected on the last step, when all main variants are already collected - Add more tests - Also, disable completion of extensions from objects as callable references (^KT-37395 Fixed) - ^KT-36860 Fixed
11 lines
102 B
Kotlin
Vendored
11 lines
102 B
Kotlin
Vendored
class T
|
|
|
|
object Extensions {
|
|
fun T.foo() {}
|
|
}
|
|
|
|
fun usage(t: T) {
|
|
t.f<caret>
|
|
}
|
|
|
|
// ELEMENT: foo |