11 lines
107 B
Kotlin
Vendored
11 lines
107 B
Kotlin
Vendored
object X
|
|
|
|
class Y {
|
|
fun f(op: X.() -> Unit) {
|
|
X.op()
|
|
|
|
val x = X
|
|
x.op()
|
|
}
|
|
}
|