Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
f7ff397a310cd4d47fc4849043f8c9d47412e512
/
.
/
compiler
/
testData
/
codegen
/
box
/
labels
/
infixCallLabelling.kt
blob: e471dad717426ad930038be5ddc2d76f08092223 [
file
]
// IGNORE_BACKEND_FIR: JVM_IR
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"
}