mirror of
https://github.com/rust-lang/rust.git
synced 2026-04-25 20:56:55 +00:00
Fix doc test for Vec::retain(), now passes clippy::eval_order_dependence Doc test for Vec::retain() works correctly but is flagged by clippy::eval_order_dependence. Fix avoids the issue by using an iterator instead of an index.