about summary refs log tree commit diff
path: root/src/test/run-fail/unwind-misc-1.rs
AgeCommit message (Collapse)AuthorLines
2011-12-13Copy first batch of material from libstd to libcore.Graydon Hoare-2/+2
2011-10-25Properly take mutable object fields into account during alias analysisMarijn Haverbeke-9/+5
Closes #1055
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-2/+2
Issue #1056
2011-10-10Adjust function signatures to allow for vecs being immediateMarijn Haverbeke-2/+2
Some code was relying on vectors being implicitly by-reference (as non-immediate value). This adds the necessary &&-sigils. Closes #1021
2011-09-12Merge branch 'unwind'Brian Anderson-0/+28
Conflicts: src/comp/middle/trans.rs src/comp/middle/trans_build.rs src/lib/run_program.rs src/test/compiletest/runtest.rs
2011-09-11Add some more unwind testsBrian Anderson-0/+28
They worked without modifications, but I wrote them so we're keeping them. Issue #236