Finish removing inner-vector-mutability #4912
Labels
A-frontend
Area: Compiler frontend (errors, parsing and HIR)
A-testsuite
Area: The testsuite used to check the correctness of rustc
C-cleanup
Category: PRs that clean code up or issues documenting cleanup.
Milestone
After #4908, there are very few places left in the compiler that are using
[mut foo]
rather than just[foo]
(with mutability instead attached to either the slot or the pointer). Here are the steps need to completely remove it:~[]
should be sufficient to cover all uses of Dvec throughout the compiler. However, this is blocked on some work by @nikomatsakis to improve the borrow check.The text was updated successfully, but these errors were encountered: