blob: aca338e8a3b44dfcc53b9aa32a33f804ad517b50 [file] [log] [blame]
class TestLongOfTwoInts {
fun foo(x1: Int, x2: Int): Long {
return (x1 or (x2.toLong() shl 32).toInt()).toLong()
}
}