Verify interval operator precedence in output #19
Loading…
x
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
When writing
1 + 2..5
, this seems to be interpreted as(1 + 2)..5
and not1 + (2..5)
, which is what I’d have expected.I believe that this is inconsistent with anthem’s output, which might incorrectly print
(1 + 2)..5)
as(1 + 2..5)
.Verify interval operator precedenceto Verify interval operator precedence in outputFixed by 1f7f6a02b429ac72bde28418a7ea15465bb0c0e7.