61153c87e0
Introduce KotlinCopyPasteReferenceProcessor
22 lines
420 B
Kotlin
22 lines
420 B
Kotlin
package a
|
|
|
|
import a.Outer.*
|
|
|
|
class Outer {
|
|
class object {
|
|
inner class Inner {
|
|
}
|
|
class Nested {
|
|
}
|
|
enum class NestedEnum {
|
|
}
|
|
object NestedObj {
|
|
}
|
|
trait NestedTrait {
|
|
}
|
|
annotation class NestedAnnotation
|
|
}
|
|
}
|
|
|
|
<selection>fun f(i: Inner, n: Nested, e: NestedEnum, o: NestedObj, t: NestedTrait, a: NestedAnnotation) {
|
|
}</selection> |