Files
kotlin-fork/compiler/testData/diagnostics/tests/checkArguments/twoLambdasFunction.fir.kt
T

14 lines
250 B
Kotlin
Vendored

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