Files
kotlin-fork/compiler/testData/diagnostics/tests/checkArguments/twoLambdasFunction.fir.kt
T
2020-02-14 17:53:28 +03:00

14 lines
182 B
Kotlin
Vendored

// !DIAGNOSTICS: -UNUSED_EXPRESSION -UNUSED_PARAMETER
// !WITH_NEW_INFERENCE
fun test(x: () -> Unit, y: () -> Unit) {
}
fun main() {
test {
1
} {
2
}
}