FIR: Fix operator and infix flags for FIR builtins

This commit is contained in:
Steven Schäfer
2022-09-16 15:56:12 +02:00
committed by teamcity
parent 808a73d5b9
commit 760f89efd3
9 changed files with 79 additions and 6 deletions
@@ -0,0 +1,9 @@
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 */
}