17 lines
253 B
Kotlin
Vendored
17 lines
253 B
Kotlin
Vendored
internal class A {
|
|
|
|
fun foo() {
|
|
privateStatic1()
|
|
privateStatic2()
|
|
}
|
|
|
|
companion object {
|
|
private val s = "abc"
|
|
|
|
private fun privateStatic1() {
|
|
}
|
|
|
|
private fun privateStatic2() {
|
|
}
|
|
}
|
|
} |