mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 15:53:37 +00:00
9 lines
115 B
Kotlin
9 lines
115 B
Kotlin
fun foo() {
|
|
val a = object {
|
|
val b = object {
|
|
val c = 42
|
|
}
|
|
}
|
|
|
|
a.b.c : Int
|
|
} |