about summary refs log tree commit diff
path: root/src/test/compile-fail/for-loop-decl.rs
AgeCommit message (Collapse)AuthorLines
2011-10-21Remove some semicolons after block callsMarijn Haverbeke-1/+1
The remaining ones can be removed after the next snapshot. (Or we can let the next pretty-print pass take care of them.)
2011-10-21Remove remaining uses of iter and for-eachMarijn Haverbeke-3/+3
Issue #1056
2011-08-16Port the tests to the typaram foo<T> syntax.Erick Tryzelaar-1/+1
2011-08-15The wonky for...in... whitespace was bothering me. Sorry!Lindsey Kuper-2/+2
2011-07-27Reformat for new syntaxMarijn Haverbeke-14/+9
2011-07-26Remove uses of tuples from the test suiteMarijn Haverbeke-3/+4
2011-06-14Remove some unnecessary xfailsTim Chevalier-1/+1
2011-05-27Check the declaration type in a for loop against the sequence typeTim Chevalier-0/+23
Changed the typechecker to correctly typecheck the declared variable type in a for or for-each loop against the vector element type (for a for loop) or the iterator type (for a for-each loop). Added a test case.