summary refs log tree commit diff
path: root/src/test/compile-fail/borrowck-lend-flow-loop.rs
AgeCommit message (Collapse)AuthorLines
2013-08-03replace all remaining `for` with `foreach` or `do`Daniel Micay-27/+0
2013-08-01std: Change `Times` trait to use `do` instead of `for`blake2-ppc-1/+1
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.
2013-06-04librustc: Disallow multiple patterns from appearing in a "let" declaration.Patrick Walton-7/+14
You can still initialize multiple variables at once with "let (x, y) = (1, 2)".
2013-05-10test: Use the new `for` protocolAlex Crichton-1/+1
2013-04-30new borrow checker (mass squash)Niko Matsakis-0/+164