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

6 lines
98 B
Plaintext
Vendored

// WITH_RUNTIME
fun test(){
1.apply {
listOf(1, 2, 3).onEach { this.plus(it) }
}
}