13 lines
151 B
Kotlin
Vendored
13 lines
151 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
|
|
}
|