61153c87e0
Introduce KotlinCopyPasteReferenceProcessor
22 lines
340 B
Kotlin
22 lines
340 B
Kotlin
package to
|
|
|
|
class Outer {
|
|
inner class Inner {
|
|
}
|
|
class Nested {
|
|
}
|
|
enum class NestedEnum {
|
|
}
|
|
object NestedObj {
|
|
}
|
|
trait NestedTrait {
|
|
}
|
|
annotation class NestedAnnotation
|
|
}
|
|
|
|
enum class E {
|
|
ENTRY
|
|
}
|
|
|
|
fun f2(i: Inner, n: Nested, e: NestedEnum, o: NestedObj, t: NestedTrait, a: NestedAnnotation) {
|
|
} |