Skip to content

Commit

Permalink
fix test failure
Browse files Browse the repository at this point in the history
  • Loading branch information
tjhance committed Feb 28, 2025
1 parent bd63df7 commit cae437d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion source/vstd/layout.rs
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,8 @@ pub broadcast proof fn layout_of_references_and_pointers_for_sized_types<T: Size
requires
is_sized::<T>(),
ensures
#![all_triggers]
#![trigger size_of::<*mut T>()]
#![trigger align_of::<*mut T>()]
size_of::<*mut T>() == size_of::<usize>(),
align_of::<*mut T>() == align_of::<usize>(),
;
Expand Down

0 comments on commit cae437d

Please sign in to comment.