about summary refs log tree commit diff
path: root/src/test/run-fail/do-while-body-fails.rs
AgeCommit message (Collapse)AuthorLines
2012-05-10Remove `do ... while` loops from the tests and docs.Paul Stansifer-2/+0
2011-09-15Insert omitted semicolons for statementsMarijn Haverbeke-1/+1
2011-08-20ReformatBrian Anderson-3/+1
This changes the indexing syntax from .() to [], the vector syntax from ~[] to [] and the extension syntax from #fmt() to #fmt[]
2011-08-12Un-XFAIL do-while-body-failsTim Chevalier-3/+0
Made it work both with optimization enabled, and with optimization disabled. Huzzah!
2011-08-11XFAIL do-while-body-failsBrian Anderson-0/+3
Doesn't work w/out optimizations
2011-08-11Handle _|_ - typed things in the bodies of do-while loopsTim Chevalier-0/+4
The resulting code is strange, but perhaps someone else can fix it. The obvious things, like returning body_res, all resulted in completely incomprehensible LLVM errors. Closes #814