Skip to content

Commit

Permalink
Try substituting $crate with super to make verify_std_cmd pass …
Browse files Browse the repository at this point in the history
…on CI
  • Loading branch information
artemagvanian committed Jul 10, 2024
1 parent 630f6c3 commit 0b24435
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/kani_core/src/mem.rs
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ macro_rules! kani_mem {

/// A helper to assert `is_initialized` to use it as a part of other predicates.
fn assert_is_initialized<T: ?Sized>(ptr: *const T) -> bool {
$crate::check(
super::check(
is_initialized(ptr),
"Undefined Behavior: Reading from an uninitialized pointer",
);
Expand Down

0 comments on commit 0b24435

Please sign in to comment.