You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In DM, 1 | 6 & 2 is parsed as 1 | (6 & 2) and returns 3.
Instead, we parse it as (1 | 6) & 2, as all bit ops are treated as having the same precedence.
According to ref, precedence should be & > ^ > |