about summary refs log tree commit diff
path: root/src/test/compile-fail/issue-3651.rs
AgeCommit message (Collapse)AuthorLines
2013-08-03replace all remaining `for` with `foreach` or `do`Daniel Micay-16/+0
2013-05-29librustc: Stop reexporting the standard modules from prelude.Patrick Walton-0/+2
2013-05-10test: Use the new `for` protocolAlex Crichton-0/+1
2013-02-14librustc: Replace `impl Type : Trait` with `impl Trait for Type`. ↵Patrick Walton-1/+1
rs=implflipping
2013-01-24syntax/rustc: Improve error message for misuse of `for` loopTim Chevalier-0/+13
Print out a clearer error message when a `for` gets used with the wrong type of iterator. Also fix spans on `for` loop bodies, and suppress some more derived errors. r=brson Closes #3651