Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ba045e44fbc13a4a8bcfa03689115fd0a25366a9
/
.
/
idea
/
testData
/
quickfix
/
changeSignature
/
changeFunctionLiteralParameters1.kt
blob: b64f06b529f783c26e88926248a9b71e97360579 [
file
] [
log
] [
blame
]
// "Change the signature of lambda expression" "true"
// DISABLE-ERRORS
fun f
(
x
:
Int
,
y
:
Int
,
z
:
()
->
Int
)
{
f
(
1
,
2
,
{
x
:
Int
,
y
:
Int
<caret>
->
x
});
}