5059513106
Inline functions in private classes can only be accessed from Java and we do not need to preserve their bodies for the abi.
12 lines
214 B
Kotlin
Vendored
12 lines
214 B
Kotlin
Vendored
class A {
|
|
private class B {
|
|
inline fun test(crossinline s: () -> Unit) {
|
|
object {
|
|
fun run() {
|
|
s()
|
|
}
|
|
}.run()
|
|
}
|
|
}
|
|
}
|