mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-18 08:31:38 +00:00
20 lines
330 B
Kotlin
Vendored
20 lines
330 B
Kotlin
Vendored
class Outer {
|
|
inner class Inner {
|
|
init {
|
|
class NamedLocal {
|
|
fun foo() {
|
|
outer()
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
fun outer() {}
|
|
}
|
|
|
|
// JVM_TEMPLATES
|
|
// 1 final synthetic LOuter\$Inner; this\$0
|
|
|
|
// JVM_IR_TEMPLATES
|
|
// 2 final synthetic LOuter; this\$0
|