summaryrefslogtreecommitdiff
path: root/Test/dafny0/LhsDuplicates.dfy.expect
Commit message (Collapse)AuthorAge
* Fix: Unify column numbers in Dafny's errorsGravatar Clément Pit--Claudel2015-07-23
| | | | | | | | | Dafny counts from 0, but Boogie counts from 1. Tokens are 1-based. Thus when we print tokens, we need to decrement the column number. This was done for resolver errors, but not for verification or parsing errors. In addition, parsing errors were inconsistent with resolution errors case-wise. Unfortunately, the fix affects the output of many tests.
* Allow assignment LHSs in a forall statement to be the same, so long as the ↵Gravatar leino2014-10-30
they are assigned the same RHS value. Don't include havoc assignments in LHS-duplicate checks.