42u is parsed as int rather than uint
Closed
42u is parsed as int rather than uint
It turns out that the lexer scans 42u
as tok_number
instead of tok_number_uint
, only
42ui
is scanned as tok_number_uint
.
42u is parsed as int rather than uint
It turns out that the lexer scans 42u
as tok_number
instead of tok_number_uint
, only
42ui
is scanned as tok_number_uint
.
mentioned in merge request !164 (merged)
mentioned in commit 13a24a8a
closed via merge request !164 (merged)