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