Files
kotlin-fork/idea/testData/copyPaste/imports/Inner.kt
T
2015-02-12 18:18:05 +03:00

23 lines
404 B
Kotlin

package a
import a.Outer.*
class Outer {
inner class Inner {
}
inner class Inner2 {
}
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, aa: NestedAnnotation) {
Outer().Inner2()
}</selection>