rust/src/test/run-fail
bors e9bc1bac8c Auto merge of #35764 - eddyb:byegone, r=nikomatsakis
Remove the old AST-based backend from rustc_trans.

Starting with Rust 1.13, `--disable-orbit` , `-Z orbit=off` and `#[rustc_no_mir]` have been removed.
Only the new MIR backend is left in the compiler, and only early const_eval uses ASTs from other crates.

Filling drop (previously "zeroing drop"), `#[unsafe_no_drop_flag]` and associated unstable APIs are gone.
Implementing `Drop` doesn't add a flag anymore to the type, all of the dynamic drop is function local.
This is a [breaking-change], please use `Option::None` and/or `mem::forget` if you are unsure about your ability to prevent/control the drop of a value. In the future, `union` will be usable in some such cases.

**NOTE**: DO NOT MERGE before we get the new beta as the stage0, there's some cruft to remove.

All of this will massively simplify any efforts to implement (and as such it blocks) features such as `union`s, safe use of `#[packed]` or new type layout optimizations, not to mention many other experiments.
2016-08-24 14:57:34 -07:00
..
adjust_never.rs Add explanations to tests 2016-08-13 21:37:09 +08:00
args-panic.rs
assert-as-macro.rs
assert-eq-macro-panic.rs
assert-macro-explicit.rs
assert-macro-fmt.rs
assert-macro-owned.rs
assert-macro-static.rs
binop-fail-3.rs
binop-panic.rs
bounds-check-no-overflow.rs
bug-811.rs
bug-2470-bounds-check-overflow.rs
call-fn-never-arg.rs typeck: use NoExpectation to check return type of diverging fn 2016-08-23 16:58:49 +00:00
cast-never.rs Add explanations to tests 2016-08-13 21:37:09 +08:00
die-macro-expr.rs
die-macro-pure.rs
die-macro.rs
diverging-closure.rs
divide-by-zero.rs Update wording on E0080 2016-08-04 07:31:06 +05:30
doublepanic.rs
dst-raw-slice.rs
explicit-panic-msg.rs
explicit-panic.rs
expr-fn-panic.rs
expr-if-panic-fn.rs
expr-if-panic.rs
expr-match-panic-fn.rs
expr-match-panic.rs
fmt-panic.rs
for-each-loop-panic.rs
glob-use-std.rs
hashmap-capacity-overflow.rs
if-check-panic.rs
if-cond-bot.rs
issue-948.rs
issue-2444.rs
issue-2761.rs
issue-3029.rs
issue-6458-1.rs
issue-12920.rs
issue-13202.rs
issue-18576.rs
issue-20971.rs
issue-23354-2.rs
issue-23354.rs
issue-28934.rs
issue-30380.rs Disable old trans access via -Z orbit, #[rustc_no_mir] or --disable-orbit. 2016-08-24 13:23:37 +03:00
main-panic.rs
match-bot-panic.rs
match-disc-bot.rs
match-wildcards.rs
meta-revision-bad.rs
meta-revision-ok.rs
mir_drop_panics.rs Disable old trans access via -Z orbit, #[rustc_no_mir] or --disable-orbit. 2016-08-24 13:23:37 +03:00
mir_dynamic_drops_1.rs Disable old trans access via -Z orbit, #[rustc_no_mir] or --disable-orbit. 2016-08-24 13:23:37 +03:00
mir_dynamic_drops_2.rs Disable old trans access via -Z orbit, #[rustc_no_mir] or --disable-orbit. 2016-08-24 13:23:37 +03:00
mir_dynamic_drops_3.rs Disable old trans access via -Z orbit, #[rustc_no_mir] or --disable-orbit. 2016-08-24 13:23:37 +03:00
mir_indexing_oob_1.rs Disable old trans access via -Z orbit, #[rustc_no_mir] or --disable-orbit. 2016-08-24 13:23:37 +03:00
mir_indexing_oob_2.rs Disable old trans access via -Z orbit, #[rustc_no_mir] or --disable-orbit. 2016-08-24 13:23:37 +03:00
mir_indexing_oob_3.rs Disable old trans access via -Z orbit, #[rustc_no_mir] or --disable-orbit. 2016-08-24 13:23:37 +03:00
mir_trans_calls_converging_drops_2.rs Disable old trans access via -Z orbit, #[rustc_no_mir] or --disable-orbit. 2016-08-24 13:23:37 +03:00
mir_trans_calls_converging_drops.rs Disable old trans access via -Z orbit, #[rustc_no_mir] or --disable-orbit. 2016-08-24 13:23:37 +03:00
mir_trans_calls_diverging_drops.rs Disable old trans access via -Z orbit, #[rustc_no_mir] or --disable-orbit. 2016-08-24 13:23:37 +03:00
mir_trans_calls_diverging.rs Disable old trans access via -Z orbit, #[rustc_no_mir] or --disable-orbit. 2016-08-24 13:23:37 +03:00
mir_trans_no_landing_pads_diverging.rs Disable old trans access via -Z orbit, #[rustc_no_mir] or --disable-orbit. 2016-08-24 13:23:37 +03:00
mir_trans_no_landing_pads.rs Disable old trans access via -Z orbit, #[rustc_no_mir] or --disable-orbit. 2016-08-24 13:23:37 +03:00
mod-zero.rs Update wording on E0080 2016-08-04 07:31:06 +05:30
never-associated-type.rs Add explanations to tests 2016-08-13 21:37:09 +08:00
never-type-arg.rs Add explanations to tests 2016-08-13 21:37:09 +08:00
overflowing-add.rs Update wording on E0080 2016-08-04 07:31:06 +05:30
overflowing-lsh-1.rs Update wording on E0080 2016-08-04 07:31:06 +05:30
overflowing-lsh-2.rs Update wording on E0080 2016-08-04 07:31:06 +05:30
overflowing-lsh-3.rs Update wording on E0080 2016-08-04 07:31:06 +05:30
overflowing-lsh-4.rs Update wording on E0080 2016-08-04 07:31:06 +05:30
overflowing-mul.rs Update wording on E0080 2016-08-04 07:31:06 +05:30
overflowing-neg.rs Update wording on E0080 2016-08-04 07:31:06 +05:30
overflowing-pow.rs Update wording on E0080 2016-08-04 07:31:06 +05:30
overflowing-rsh-1.rs Update wording on E0080 2016-08-04 07:31:06 +05:30
overflowing-rsh-2.rs Update wording on E0080 2016-08-04 07:31:06 +05:30
overflowing-rsh-3.rs Update wording on E0080 2016-08-04 07:31:06 +05:30
overflowing-rsh-4.rs Update wording on E0080 2016-08-04 07:31:06 +05:30
overflowing-rsh-5.rs Update wording on E0080 2016-08-04 07:31:06 +05:30
overflowing-rsh-6.rs Update wording on E0080 2016-08-04 07:31:06 +05:30
overflowing-sub.rs Update wording on E0080 2016-08-04 07:31:06 +05:30
panic-arg.rs
panic-macro-any-wrapped.rs
panic-macro-any.rs
panic-macro-explicit.rs
panic-macro-fmt.rs
panic-macro-owned.rs
panic-macro-static.rs
panic-main.rs
panic-parens.rs
panic-set-handler.rs
panic-set-unset-handler.rs
panic-take-handler-nop.rs
panic-task-name-none.rs
panic-task-name-owned.rs
panic.rs
result-get-panic.rs
return-never-coerce.rs Add explanations to tests 2016-08-13 21:37:09 +08:00
rhs-type.rs
run-unexported-tests.rs
str-overrun.rs
task-spawn-barefn.rs
test-panic.rs
test-should-fail-bad-message.rs
test-tasks-invalid-value.rs
tls-exit-status.rs
unimplemented-macro-panic.rs
unique-panic.rs
unreachable-fmt-msg.rs
unreachable-macro-panic.rs
unreachable-static-msg.rs
unreachable.rs
unwind-interleaved.rs
unwind-rec2.rs
unwind-rec.rs
unwind-unique.rs
vec-overrun.rs
while-body-panics.rs
while-panic.rs