Files
kotlin-fork/idea/testData/intentions/replaceExplicitFunctionLiteralParamWithIt/notApplicable_hasDestructuringDeclaration.kt
T
2017-06-08 16:32:54 +03:00

5 lines
114 B
Kotlin
Vendored

// WITH_RUNTIME
// IS_APPLICABLE: false
val list = listOf(Pair(1, 2), Pair(3, 4)).map { (<caret>f, s) -> f + s }