Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
2b455fc1ba7dcb99fa03fdfc31c7672d6ccfc9fd
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
varargs
/
varargsAndFunctionLiterals.kt
blob: fc5c8b391a6bd02114ddae3ab026f455f12ce302 [
file
]
// RUN_PIPELINE_TILL: BACKEND
// FIR_IDENTICAL
fun f
(
vararg t
:
Int
,
f
:
()->
Unit
)
{
}
fun test
()
{
f
{}
f
()
{}
f
(
1
)
{
}
f
(
1
,
2
)
{
}
}
/* GENERATED_FIR_TAGS: functionDeclaration, functionalType, integerLiteral, lambdaLiteral, vararg */