Skip to content

Commit 03c5ad1

Browse files
committed
FileCheck mutable_variable_aggregate.
1 parent ea9f968 commit 03c5ad1

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

tests/mir-opt/const_prop/mutable_variable_aggregate.rs

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,13 @@
1-
// skip-filecheck
21
// unit-test: ConstProp
32

43
// EMIT_MIR mutable_variable_aggregate.main.ConstProp.diff
54
fn main() {
5+
// CHECK-LABEL: fn main(
6+
// CHECK: debug x => [[x:_.*]];
7+
// CHECK: debug y => [[y:_.*]];
8+
// CHECK: [[x]] = const (42_i32, 43_i32);
9+
// CHECK: ([[x]].1: i32) = const 99_i32;
10+
// CHECK: [[y]] = const (42_i32, 99_i32);
611
let mut x = (42, 43);
712
x.1 = 99;
813
let y = x;

0 commit comments

Comments
 (0)