8f0aecce58
NB some cases such as captured extension receiver for an extension lambda are not supported yet; to be discussed, to what extent should we actually follow JVM code shape here.
23 lines
466 B
Kotlin
Vendored
23 lines
466 B
Kotlin
Vendored
class Outer {
|
|
inner class Inner {
|
|
private fun bar() {
|
|
class NamedLocal {
|
|
fun run() {
|
|
innerFoo()
|
|
outerFoo()
|
|
}
|
|
}
|
|
}
|
|
|
|
fun innerFoo() {}
|
|
}
|
|
|
|
fun outerFoo() {}
|
|
}
|
|
|
|
// JVM_TEMPLATES
|
|
// 1 final synthetic LOuter\$Inner; this\$0
|
|
|
|
// JVM_IR_TEMPLATES
|
|
// 1 private final synthetic LOuter\$Inner; this\$0
|
|
// 1 private final synthetic LOuter; this\$1 |