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

17 lines
220 B
Kotlin
Vendored

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