about summary refs log tree commit diff
path: root/src/test/run-fail/issue-30380.rs
AgeCommit message (Collapse)AuthorLines
2020-05-06Move tests from `test/run-fail` to UIYuki Okushi-34/+0
2018-12-25Remove licensesMark Rousskov-10/+0
2016-08-24Disable old trans access via -Z orbit, #[rustc_no_mir] or --disable-orbit.Eduard Burtescu-3/+0
2016-06-04fix translation of terminators in MSVC cleanup blocksAriel Ben-Yehuda-0/+3
MSVC requires unwinding code to be split to a tree of *funclets*, where each funclet can only branch to itself or to to its parent. Luckily, the code we generates matches this pattern. Recover that structure in an analyze pass and translate according to that.
2016-06-03implement drop elaborationAriel Ben-Yehuda-0/+44
Fixes #30380