Skip to content

Commit

Permalink
fixup! fixup! Codegen storage markers as assignments to __CPROVER_dea…
Browse files Browse the repository at this point in the history
…d_object
  • Loading branch information
tautschnig committed Jun 21, 2024
1 parent 59d2fba commit 42ed007
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/expected/shadow/unsupported_num_objects/test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ fn check_max_objects<const N: usize>() {
// - the NULL pointer whose object ID is 0, and
// - the object ID for `i`
while i < N {
let x : Box<usize> = Box::new(i);
let x: Box<usize> = Box::new(i);
assert_eq!(kani::mem::pointer_object(&*x as *const usize), 2 * i + 2);
i += 1;
}
Expand Down

0 comments on commit 42ed007

Please sign in to comment.