Files
kotlin-fork/compiler/fir/analysis-tests/testData/extendedCheckers/unused/lambda.kt
T
2020-08-27 16:07:04 +03:00

9 lines
79 B
Kotlin
Vendored

fun f(t: (v: Int) -> Unit) {
1.run(t)
}
fun main() {
f { i ->
}
}