summary refs log tree commit diff
path: root/src/test/compile-fail/borrowck-while-cond.rs
AgeCommit message (Collapse)AuthorLines
2014-03-09borrowck: classify expressions as assignees, uses or bothEdward Wang-0/+14
- Repurposes `MoveData.assignee_ids` to mean only `=` but not `+=`, so that borrowck effectively classifies all expressions into assignees, uses or both. - Removes two `span_err` in liveness analysis, which are now borrowck's responsibilities. Closes #12527.