Sway hex literals have their suffix counted as digits #6727
Labels
bug
Something isn't working
compiler: frontend
Everything to do with type checking, control flow analysis, and everything between parsing and IRgen
good first issue
Good for newcomers
ODHack12
team:compiler
Compiler Team
Related Component
compiler
Problem
As the title states, hex literals have their optional suffix counted as part of their digits. This causes the following error, and related errors for types aside from b256:
If we count the zeroes, logically we can deduce that there is in fact exactly 64 digits in the following:
But there is no attempt made to strip the
b256
before counting.Steps
0x0000000000000000000000000000000000000000000000000000000000000000b256
constant.forc build
Possible Solution(s)
Maybe strip the suffix before this point:
sway/sway-core/src/transform/to_parsed_lang/convert_parse_tree.rs
Lines 3388 to 3402 in 73e1a7a
Notes
Should be an easy fix, but it should be done ASAP.
Installed components
The text was updated successfully, but these errors were encountered: