Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
ir
/
irText
/
expressions
/
conventionComparisons.kt
blob: 4b634f6f126279ded74ea2cf730a380181d7ac56 [
file
]
// FIR_IDENTICAL
interface
IA
interface
IB
{
operator
fun IA
.
compareTo
(
other
:
IA
):
Int
}
fun IB
.
test1
(
a1
:
IA
,
a2
:
IA
)
=
a1
>
a2
fun IB
.
test2
(
a1
:
IA
,
a2
:
IA
)
=
a1
>=
a2
fun IB
.
test3
(
a1
:
IA
,
a2
:
IA
)
=
a1
<
a2
fun IB
.
test4
(
a1
:
IA
,
a2
:
IA
)
=
a1
<=
a2