mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-22 10:05:06 +03:00
78cde5b9fb
Change the former repetition::
for 5.times { }
to::
do 5.times { }
.times() cannot be broken with `break` or `return` anymore; for those
cases, use a numerical range loop instead.