Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
5e49b472f81ed95098eec9749aa2ad0415fac731
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
checkArguments
/
twoLambdasFunction.kt
blob: 898b4c48cb6ac012a03afff3e7523fd80b6bf115 [
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
}<!>
}