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

24 lines
545 B
Kotlin
Vendored

package a
import a.Outer.Companion.Nested
import a.Outer.Companion.NestedEnum
import a.Outer.Companion.NestedObj
import a.Outer.Companion.NestedTrait
import a.Outer.Companion.NestedAnnotation
class Outer {
companion object {
class Nested {
}
enum class NestedEnum {
}
object NestedObj {
}
interface NestedTrait {
}
annotation class NestedAnnotation
}
}
<selection>fun f(n: Nested, e: NestedEnum, o: NestedObj, t: NestedTrait, a: NestedAnnotation) {
}</selection>