6 lines
99 B
Kotlin
Vendored
6 lines
99 B
Kotlin
Vendored
package test
|
|
|
|
private val x = object { fun f() = 1 }
|
|
|
|
fun g() = x.f() + object { fun f() = 0 }.f()
|