61153c87e0
Introduce KotlinCopyPasteReferenceProcessor
28 lines
294 B
Kotlin
28 lines
294 B
Kotlin
package a
|
|
|
|
import a.A.Inner
|
|
import a.A.Nested
|
|
|
|
class A {
|
|
inner class Inner {
|
|
}
|
|
class Nested {
|
|
}
|
|
fun foo() {
|
|
}
|
|
}
|
|
|
|
fun A.ext() {
|
|
}
|
|
|
|
fun f(body: A.() -> Unit) {
|
|
}
|
|
|
|
<selection>fun g() {
|
|
f {
|
|
Inner()
|
|
Nested()
|
|
foo()
|
|
ext()
|
|
}
|
|
}</selection> |