Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
285 B
Rust
Raw Normal View History

// EMIT_MIR_FOR_EACH_PANIC_STRATEGY
2022-07-26 19:04:27 +02:00
// unit-test: ConstProp
2019-06-01 13:08:04 -05:00
// compile-flags: -C overflow-checks=on
2020-07-27 21:22:43 +02:00
// EMIT_MIR indirect.main.ConstProp.diff
2019-06-01 13:08:04 -05:00
fn main() {
2023-12-02 20:29:47 +00:00
// CHECK-LABEL: fn main(
// CHECK: debug x => [[x:_.*]];
// CHECK: [[x]] = const 3_u8;
2019-06-01 13:08:04 -05:00
let x = (2u32 as u8) + 1;
}