59f192ef90
Includes changes to decompiled text Old syntax is used in builtins and project code for now
15 lines
215 B
Kotlin
15 lines
215 B
Kotlin
class Outer {
|
|
class Nested {
|
|
default object {
|
|
fun foo() = 42
|
|
}
|
|
}
|
|
|
|
default object {
|
|
fun bar() = 239
|
|
}
|
|
}
|
|
|
|
fun foo() = Outer.Nested.foo()
|
|
fun bar() = Outer.bar()
|