``` infix fun Int.`|`(other: Int) = this or oth...
# language-proposals
d
Copy code
infix fun Int.`|`(other: Int) = this or other

    fun test() = 2 `|` 4