mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +00:00
c9c80d2c5f
The only non-obvious changes: - `building/storage_live_dead_in_statics.rs` has a `#[rustfmt::skip]` attribute to avoid reformating a table of data. - Two `.mir` files have slight changes involving line numbers. - In `unusual_item_types.rs` an `EMIT_MIR` annotation is moved to outside a function, which is the usual spot, because `tidy` complains if such a comment is indented. The commit also tweaks the comments in `rustfmt.toml`.
21 lines
427 B
Rust
21 lines
427 B
Rust
// skip-filecheck
|
|
//@ compile-flags: -Z mir-opt-level=1
|
|
// Regression test for #72181, this ICE requires `-Z mir-opt-level=1` flags.
|
|
|
|
#![feature(never_type)]
|
|
#![allow(unused, invalid_value)]
|
|
|
|
enum Void {}
|
|
|
|
// EMIT_MIR issue_72181_1.f.built.after.mir
|
|
fn f(v: Void) -> ! {
|
|
match v {}
|
|
}
|
|
|
|
// EMIT_MIR issue_72181_1.main.built.after.mir
|
|
fn main() {
|
|
let v: Void = unsafe { std::mem::transmute::<(), Void>(()) };
|
|
|
|
f(v);
|
|
}
|