Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ba045e44fbc13a4a8bcfa03689115fd0a25366a9
/
.
/
idea
/
testData
/
quickfix
/
changeSignature
/
changeFunctionLiteralParameters2.kt.after
blob: 8e55b3a161a72e88714172e1bfc4c526ce3aa8a2 [
file
] [
log
] [
blame
]
// "Change the signature of lambda expression" "true"
// DISABLE-ERRORS
fun f
(
x
:
Int
,
y
:
Int
,
z
:
(
Int
,
Int
?,
Any
)
->
Int
)
{
f
(
1
,
2
,
{
i
:
Int
,
i1
:
Int
?,
any
:
Any
->
x
});
}