7 lines
92 B
Kotlin
7 lines
92 B
Kotlin
trait Foo {
|
|
fun foo(f: (Int) -> Unit)
|
|
}
|
|
fun foo(x: Foo) {
|
|
<caret>x foo { it * 2 }
|
|
}
|