2490318f93
KT-14831 Don't add import statement and FQN on converting lambda to reference if typealias is used KT-16088 Completion wrongly inserts FQN for `kotlin` package #KT-16076 fixed #KT-14831 fixed #KT-16088 fixed
15 lines
147 B
Kotlin
Vendored
15 lines
147 B
Kotlin
Vendored
package d
|
|
|
|
class E() {
|
|
fun my(s: String) {
|
|
|
|
}
|
|
|
|
fun my(i: Int) {
|
|
|
|
}
|
|
|
|
fun usage() {
|
|
<selection>d.my()</selection>
|
|
}
|
|
} |