summaryrefslogtreecommitdiffstats
path: root/tests/mir-opt/const_prop/cast.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/mir-opt/const_prop/cast.rs')
-rw-r--r--tests/mir-opt/const_prop/cast.rs7
1 files changed, 5 insertions, 2 deletions
diff --git a/tests/mir-opt/const_prop/cast.rs b/tests/mir-opt/const_prop/cast.rs
index 3d543bada..b81c2740a 100644
--- a/tests/mir-opt/const_prop/cast.rs
+++ b/tests/mir-opt/const_prop/cast.rs
@@ -1,9 +1,12 @@
-// skip-filecheck
// unit-test: ConstProp
// EMIT_MIR cast.main.ConstProp.diff
fn main() {
+ // CHECK-LABEL: fn main(
+ // CHECK: debug x => [[x:_.*]];
+ // CHECK: debug y => [[y:_.*]];
+ // CHECK: [[x]] = const 42_u32;
+ // CHECK: [[y]] = const 42_u8;
let x = 42u8 as u32;
-
let y = 42u32 as u8;
}