23 lines
404 B
Kotlin
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> |