Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6330def4271b547b5c7db5f9759e387de2908e94
/
.
/
compiler
/
testData
/
codegen
/
box
/
binaryOp
/
kt11163.kt
blob: 39ec1db35d51944bfff87cedb73c623872b36daa [
file
] [
log
] [
blame
]
operator
fun
Int
.
compareTo
(
c
:
Char
)
=
0
fun foo
(
x
:
Int
,
y
:
Char
):
String
{
if
(
x
<
y
)
{
throw
Error
()
}
return
"${y}K"
}
fun box
():
String
{
return
foo
(
42
,
'O'
)
}