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