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

23 lines
408 B
Kotlin
Vendored

package a
import a.Outer.*
class Outer {
inner class Inner {
}
inner class Inner2 {
}
class Nested {
}
enum class NestedEnum {
}
object NestedObj {
}
interface NestedTrait {
}
annotation class NestedAnnotation
}
<selection>fun f(i: Inner, n: Nested, e: NestedEnum, o: NestedObj, t: NestedTrait, aa: NestedAnnotation) {
Outer().Inner2()
}</selection>