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

7 lines
141 B
Kotlin
Vendored

// PROBLEM: none
// WITH_RUNTIME
fun test(){
listOf(1, 2, 3).also<caret> { it.forEach { i ->
if (i % 2 == 0) return@also
}}
}