Files
kotlin-fork/compiler/testData/ir/irText/expressions/equals.fir.kt.txt
T
2020-11-26 00:15:13 +03:00

16 lines
305 B
Plaintext
Vendored

fun testEqeq(a: Int, b: Int): Boolean {
return EQEQ(arg0 = a, arg1 = b)
}
fun testEquals(a: Int, b: Int): Boolean {
return a.equals(other = b)
}
fun testJEqeqNull(): Boolean {
return EQEQ(arg0 = #INT_NULL, arg1 = null)
}
fun testJEqualsNull(): Boolean {
return #INT_NULL.equals(other = null)
}