Files
kotlin-fork/plugins/uast-kotlin/testData/Lambdas.kt
T
2018-07-17 21:41:03 +03:00

13 lines
229 B
Kotlin
Vendored

import java.util.stream.Stream
fun foo() {
Stream.empty<String>().filter { it.isEmpty() }
}
fun doSelectItem(selectItemFunction: () -> Unit) {
selectItemFunction()
val baz = fun() {
Local()
}
baz()
}