about summary refs log tree commit diff
path: root/src/test/ui/parser/let-binop.stderr
AgeCommit message (Collapse)AuthorLines
2023-01-11Move /src/test to /testsAlbert Larsan-26/+0
2021-03-13Improve the wording for the `can't reassign` errorYuki Okushi-0/+6
2020-07-02Audit uses of `span_suggestion_short`Yuki Okushi-3/+3
2020-05-21Adjust according to petrochenkov's review commentsmibac138-24/+5
2020-05-20Adjust according to estebank's review commentsmibac138-10/+10
2020-05-20Expand partial error recovery for `let` with `BinOpEq`mibac138-2/+20
2020-05-20Implement partial error recovery for `let` with `BinOpEq`mibac138-0/+21
When parsing `let x: i8 += 1` the compiler interprets `i8` as a trait which makes it more complicated to do error recovery. More advanced error recovery is not implemented in this commit.