59f192ef90
Includes changes to decompiled text Old syntax is used in builtins and project code for now
17 lines
249 B
Kotlin
17 lines
249 B
Kotlin
class A {
|
|
|
|
public fun foo() {
|
|
privateStatic1()
|
|
privateStatic2()
|
|
}
|
|
|
|
default object {
|
|
private val s = "abc"
|
|
|
|
private fun privateStatic1() {
|
|
}
|
|
|
|
private fun privateStatic2() {
|
|
}
|
|
}
|
|
} |