8 lines
109 B
Kotlin
Vendored
8 lines
109 B
Kotlin
Vendored
fun foo() {
|
|
val x = object {
|
|
fun sss() = abc()
|
|
fun abc() = 1
|
|
}
|
|
val g = x.sss()
|
|
}
|