Files
kotlin-fork/idea/testData/intentions/replaceSingleLineLetIntention/destructuringDeclaration4.kt
T
2018-08-14 15:32:10 +03:00

6 lines
105 B
Kotlin
Vendored

// WITH_RUNTIME
// IS_APPLICABLE: false
fun test(k: Int) {
(1 to 2).let<caret> { (i, j) -> i + k }
}