61153c87e0
Introduce KotlinCopyPasteReferenceProcessor
43 lines
416 B
Kotlin
43 lines
416 B
Kotlin
package d
|
|
|
|
trait T
|
|
|
|
class A(i: Int) {}
|
|
|
|
val c: Int = 0
|
|
|
|
fun g(a: A) {}
|
|
|
|
fun A.ext() {
|
|
}
|
|
|
|
object O1 {
|
|
fun f() {
|
|
}
|
|
}
|
|
|
|
object O2 {
|
|
}
|
|
|
|
enum class E {
|
|
ENTRY
|
|
}
|
|
|
|
class Outer {
|
|
inner class Inner {
|
|
}
|
|
class Nested {
|
|
}
|
|
enum class NestedEnum {
|
|
}
|
|
object NestedObj {
|
|
}
|
|
trait NestedTrait {
|
|
}
|
|
annotation class NestedAnnotation
|
|
}
|
|
|
|
class ClassObject {
|
|
class object {
|
|
}
|
|
} |