Verify interval operator precedence in output #19
Reference in New Issue
Block a user
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)..5and 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.