Files
kotlin-fork/plugins/jvm-abi-gen/testData/compare/anonymousObjects/base/test.kt
T
2021-08-23 18:25:33 +02:00

6 lines
99 B
Kotlin
Vendored

package test
private val x = object { fun f() = 1 }
fun g() = x.f() + object { fun f() = 0 }.f()