Files
kotlin-fork/idea/testData/copyPaste/imports/ReferencedElementAlsoCopied.kt
T
2015-05-13 16:13:13 +02:00

31 lines
282 B
Kotlin
Vendored

package a
<selection>interface T
class A(i: Int) {}
val c = 0
fun g(a: A) {}
fun A.ext()
object O1 {
fun f() {
}
}
object O2 {
}
class ClassObject {
companion object {
}
}
fun f(a: A, t: T) {
g(A(c).ext())
O1.f()
O2
ClassObject
}</selection>