@@ -2,7 +2,7 @@ note: tracking was triggered
22  --> $DIR/alloc-access-tracking.rs:LL:CC
33   |
44LL |         let ptr = miri_alloc(123, 1);
5-    |                   ^^^^^^^^^^^^^^^^^^ created Miri bare-metal heap allocation of 123 bytes (alignment ALIGN bytes) with id 17 
5+    |                   ^^^^^^^^^^^^^^^^^^ created Miri bare-metal heap allocation of 123 bytes (alignment ALIGN bytes) with id 18 
66   |
77   = note: BACKTRACE:
88   = note: inside `start` at $DIR/alloc-access-tracking.rs:LL:CC
@@ -11,7 +11,7 @@ note: tracking was triggered
1111  --> $DIR/alloc-access-tracking.rs:LL:CC
1212   |
1313LL |         *ptr = 42; // Crucially, only a write is printed here, no read!
14-    |         ^^^^^^^^^ write access to allocation with id 17 
14+    |         ^^^^^^^^^ write access to allocation with id 18 
1515   |
1616   = note: BACKTRACE:
1717   = note: inside `start` at $DIR/alloc-access-tracking.rs:LL:CC
@@ -20,7 +20,7 @@ note: tracking was triggered
2020  --> $DIR/alloc-access-tracking.rs:LL:CC
2121   |
2222LL |         assert_eq!(*ptr, 42);
23-    |         ^^^^^^^^^^^^^^^^^^^^ read access to allocation with id 17 
23+    |         ^^^^^^^^^^^^^^^^^^^^ read access to allocation with id 18 
2424   |
2525   = note: BACKTRACE:
2626   = note: inside `start` at RUSTLIB/core/src/macros/mod.rs:LL:CC
@@ -30,7 +30,7 @@ note: tracking was triggered
3030  --> $DIR/alloc-access-tracking.rs:LL:CC
3131   |
3232LL |         miri_dealloc(ptr, 123, 1);
33-    |         ^^^^^^^^^^^^^^^^^^^^^^^^^ freed allocation with id 17 
33+    |         ^^^^^^^^^^^^^^^^^^^^^^^^^ freed allocation with id 18 
3434   |
3535   = note: BACKTRACE:
3636   = note: inside `start` at $DIR/alloc-access-tracking.rs:LL:CC
0 commit comments