Files
2022-10-05 12:14:05 +00:00

10 lines
213 B
Kotlin
Vendored

package test
fun callBuiltinFunctions(a: Int, b: Int) {
a.plus(other = b) /*~> Unit */
a.or(other = b) /*~> Unit */
a.and(other = b) /*~> Unit */
a.inv() /*~> Unit */
a.shl(bitCount = b) /*~> Unit */
}