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
As rune forces me to use signed integer types, the compiler will emit an error when trying to use a bitmask on an integer:
Code:
value & 0xff00_0000_0000_0000) >> 0x38
Error:
error: Number literal out of bounds `-9223372036854775808` to `9223372036854775807`
┌─ entry:67:17
│
67 │ (value & 0xff00_0000_0000_0000) >> 0x38 |
│ ^^^^^^^^^^^^^^^^^^^^^ Number literal out of bounds `-9223372036854775808` to `9223372036854775807
Is there a way to disable this literal check?
The text was updated successfully, but these errors were encountered:
As rune forces me to use signed integer types, the compiler will emit an error when trying to use a bitmask on an integer:
Code:
Error:
Is there a way to disable this literal check?
The text was updated successfully, but these errors were encountered: