61153c87e0
Introduce KotlinCopyPasteReferenceProcessor
19 lines
121 B
Kotlin
Vendored
19 lines
121 B
Kotlin
Vendored
package to
|
|
|
|
class C {
|
|
}
|
|
|
|
val c = 1
|
|
|
|
fun g() {
|
|
}
|
|
|
|
fun C.ext() {
|
|
}
|
|
|
|
fun f() {
|
|
a.c
|
|
a.g()
|
|
a.C()
|
|
a.C().ext()
|
|
} |