9 lines
124 B
Kotlin
9 lines
124 B
Kotlin
class Synthetic {
|
|
inner class Inner {
|
|
fun test() {
|
|
foo()
|
|
}
|
|
}
|
|
|
|
private fun foo() {}
|
|
} |