Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ec80c21fd118667fdb2e851da7eea5d76d95eb52
/
.
/
idea
/
testData
/
codeInsight
/
postfix
/
valAtLambaArgumentInCall.kt.after
blob: 3021a5e0b1a6022a7e59be16586fcfc286308114 [
file
] [
log
] [
blame
]
// ALLOW_MULTIPLE_EXPRESSIONS
fun bar
(
x
:
(
Int
)
->
String
)
=
x
(
1
)
fun foo
()
{
val x
=
{
y
:
Int
->
"abc"
}
bar
(
x
)
}