Files
kotlin-fork/compiler/testData/ir/irText/expressions/builtinOperators.kt
T
2023-06-02 10:05:34 +00:00

14 lines
152 B
Kotlin
Vendored

// FIR_IDENTICAL
// FILE: test.kt
package test
fun callBuiltinFunctions(a: Int, b: Int) {
a + b
a or b
a and b
a.inv()
a shl b
}