d0f0b9e355
For internal members new names are generated, So, references to them from Java will be broken
16 lines
267 B
Kotlin
Vendored
16 lines
267 B
Kotlin
Vendored
internal class A {
|
|
inner class Inner {
|
|
fun foo() {
|
|
privateStatic1()
|
|
}
|
|
}
|
|
|
|
fun bar() {
|
|
privateStatic2()
|
|
}
|
|
|
|
companion object {
|
|
private fun privateStatic1() {}
|
|
private fun privateStatic2() {}
|
|
}
|
|
} |