59f192ef90
Includes changes to decompiled text Old syntax is used in builtins and project code for now
21 lines
352 B
Kotlin
21 lines
352 B
Kotlin
import Outer.Nested
|
|
import Outer.ClassObjectNested
|
|
import Outer.C.Inner
|
|
import Outer.C.Inner2
|
|
|
|
class Outer {
|
|
class Nested
|
|
|
|
class C {
|
|
fun foo(p1: Nested, p2: ClassObjectNested, p3: Inner) { }
|
|
|
|
inner class Inner
|
|
inner class Inner2
|
|
}
|
|
|
|
default object {
|
|
class ClassObjectNested
|
|
}
|
|
|
|
fun f(i: Inner2){}
|
|
} |