Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ba045e44fbc13a4a8bcfa03689115fd0a25366a9
/
.
/
compiler
/
testData
/
psi
/
greatSyntacticShift
/
functionLiterals.kt
blob: 1c5601d26a2d66e2335f43c6051b341c0fa2429d [
file
] [
log
] [
blame
]
class
Foo
class
Bar
fun a
(
vararg a
:
Any
)
=
a
fun test
()
{
a
(
1
,
{}
,
{
->
1
}
,
{
1
}
,
{
x
}
,
{->
1
}
,
{
x
->
1
}
,
{
x
,
y
->
1
}
,
{
x
->
1
}
,
{(
x
)}
)
}