Files
kotlin-fork/idea/testData/inspectionsLocal/simplifyNestedEachInScope/applyLabel2.kt
T
2020-09-03 15:29:32 +02:00

6 lines
116 B
Kotlin
Vendored

// WITH_RUNTIME
fun test(){
1.apply {
listOf(1, 2, 3).apply<caret> { forEach { this.plus(it) } }
}
}