mirror of
https://github.com/rust-lang/rust.git
synced 2025-12-30 01:46:06 +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.