Files
kotlin-fork/compiler/testData/diagnostics/tests/labels/automaticLabelFromInfixOperator.kt
T

18 lines
244 B
Kotlin
Vendored

fun test(x: List<Int>): Int {
x myMap {
return@myMap
}
return 0
}
fun myMap(x: List<Int>): Int {
x myMap {
return<!LABEL_NAME_CLASH!>@myMap<!>
}
return 0
}
infix fun List<Int>.myMap(x: () -> Unit) {}