59f192ef90
Includes changes to decompiled text Old syntax is used in builtins and project code for now
19 lines
294 B
Kotlin
19 lines
294 B
Kotlin
class A {
|
|
public fun foo() {
|
|
privateStatic1()
|
|
privateStatic2()
|
|
}
|
|
|
|
default object {
|
|
|
|
public fun publicStatic() {
|
|
privateStatic1()
|
|
}
|
|
|
|
private fun privateStatic1() {
|
|
}
|
|
|
|
private fun privateStatic2() {
|
|
}
|
|
}
|
|
} |