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

6 lines
107 B
Plaintext
Vendored

// WITH_RUNTIME
fun test(){
listOf(1, 2, 3).onEach { i ->
if (i % 2 == 0) return@onEach
}
}