rust/tests/mir-opt/single_use_consts.never_used_debug.SingleUseConsts.panic-abort.diff
2024-06-10 00:06:02 -07:00

22 lines
489 B
Diff

- // MIR for `never_used_debug` before SingleUseConsts
+ // MIR for `never_used_debug` after SingleUseConsts
fn never_used_debug() -> () {
let mut _0: ();
let _1: i32;
scope 1 {
- debug my_int => _1;
+ debug my_int => const <T as MyTrait>::ASSOC_INT;
}
bb0: {
StorageLive(_1);
- _1 = const <T as MyTrait>::ASSOC_INT;
+ nop;
_0 = const ();
StorageDead(_1);
return;
}
}