Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
intentions
/
replaceExplicitFunctionLiteralParamWithIt
/
notApplicable_hasDestructuringDeclaration.kt
blob: b039ad119064f799f2878d75226e42394e8987b9 [
file
] [
log
] [
blame
]
// WITH_RUNTIME
// IS_APPLICABLE: false
val list
=
listOf
(
Pair
(
1
,
2
),
Pair
(
3
,
4
)).
map
{
(<
caret
>
f
,
s
)
->
f
+
s
}