Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
checkArguments
/
twoLambdasFunction.kt
blob: f3693de4adbea8e69c6092cfc931636568c03775 [
file
]
// FIR_IDENTICAL
// DIAGNOSTICS: -UNUSED_EXPRESSION -UNUSED_PARAMETER
fun test
(
x
:
()
->
Unit
,
y
:
()
->
Unit
)
{
}
fun main
()
{
<!
NO_VALUE_FOR_PARAMETER
!>
test
<!>
{
1
}
<!
MANY_LAMBDA_EXPRESSION_ARGUMENTS
!>{
2
}<!>
}