Files
kotlin-fork/backend.native/tests/external/codegen/box/labels/infixCallLabelling.kt
T
2017-04-25 17:46:02 +07:00

24 lines
267 B
Kotlin

fun test(x: Int): Int {
x myMap {
return@myMap
}
return 0
}
fun myMap(x: Int): Int {
x myMap {
return@myMap
}
return 0
}
infix fun Int.myMap(x: () -> Unit) {}
fun box(): String {
test(0)
myMap(0)
return "OK"
}