2841931ffa
#KT-10828 Fixed
17 lines
272 B
Kotlin
Vendored
17 lines
272 B
Kotlin
Vendored
internal class A {
|
|
class Nested {
|
|
internal fun foo() {
|
|
privateStatic1()
|
|
}
|
|
}
|
|
|
|
fun bar() {
|
|
privateStatic2()
|
|
}
|
|
|
|
companion object {
|
|
|
|
private fun privateStatic1() {}
|
|
private fun privateStatic2() {}
|
|
}
|
|
} |