mirror of
https://github.com/github/codeql.git
synced 2026-02-11 20:51:06 +01:00
Kotlin: Add bitwise 'and' operation expected by Kotlin 2.3 compiler to exist in the stdlib
This commit is contained in:
@@ -26,6 +26,7 @@ public class Int {
|
||||
operator fun plus(other: Int): Int { return this.plus(other) }
|
||||
operator fun times(other: Int): Int { return this.times(other) }
|
||||
infix fun xor(other: Int): Int { return this.xor(other) }
|
||||
infix fun and(other: Int): Int { return this.and(other) }
|
||||
}
|
||||
|
||||
public object Unit {
|
||||
|
||||
Reference in New Issue
Block a user