9 lines
142 B
Kotlin
Vendored
9 lines
142 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
// KT-9808 Extension function on object for new resolve
|
|
object O
|
|
|
|
val foo: O.() -> Unit = null!!
|
|
|
|
fun test() {
|
|
O.foo()
|
|
} |