db8b0a6593
Fixed multi-caret selection in kotlin-to-kotlin copy-paste processor Relates to #KT-33939
26 lines
241 B
Kotlin
Vendored
26 lines
241 B
Kotlin
Vendored
package a
|
|
|
|
interface T
|
|
|
|
class A {
|
|
companion object: T {
|
|
}
|
|
}
|
|
|
|
class B {
|
|
companion object {
|
|
fun f(): Int
|
|
}
|
|
}
|
|
|
|
<selection>fun g(t: T): Int {
|
|
g(A)
|
|
B.f()
|
|
A
|
|
B
|
|
A.Companion
|
|
B.Companion
|
|
}</selection>
|
|
|
|
|