299097d112
(cherry picked from commit 5232af5)
10 lines
198 B
Kotlin
Vendored
10 lines
198 B
Kotlin
Vendored
interface Transformer {
|
|
fun transform(x: Int = 0, f: (Int) -> Int) = f(x)
|
|
}
|
|
|
|
class TransformerImpl : Transformer
|
|
|
|
fun bar(x: Int) = x * x
|
|
|
|
val y = TransformerImpl().transform { <caret>bar(it) }
|