Files
kotlin-fork/compiler/testData/diagnostics/tests/checkArguments/twoLambdasFunction.kt
T
Dmitriy Novozhilov b9c5b63d69 Fix #KT-28993
2019-02-07 12:12:34 +03:00

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
}<!>
}