Files
2020-12-16 19:52:30 +03:00

8 lines
109 B
Kotlin
Vendored

fun foo() {
val x = object {
fun sss() = abc()
fun abc() = 1
}
val g = x.sss()
}