7 lines
101 B
Kotlin
Vendored
7 lines
101 B
Kotlin
Vendored
fun <T> T.foo(): (a: T) -> Unit = TODO()
|
|
|
|
fun call() {
|
|
val x = 123.foo()
|
|
<expr>x(1)</expr>
|
|
}
|