Skip to content

Commit

Permalink
fix(name-crate/props): fix implies
Browse files Browse the repository at this point in the history
  • Loading branch information
W95Psp committed Feb 17, 2025
1 parent 73411b4 commit f1e1994
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions engine/names/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ fn dummy_hax_concrete_ident_wrapper<I: core::iter::Iterator<Item = u8>>(x: I, mu
constructors::not(x);
constructors::eq(x, x);
constructors::ne(x, x);
constructors::implies(x, || x);
constructors::implies(x, x);
constructors::forall(|_: ()| x);
constructors::exists(|_: ()| x);

Expand All @@ -56,7 +56,7 @@ fn dummy_hax_concrete_ident_wrapper<I: core::iter::Iterator<Item = u8>>(x: I, mu

forall(|_: ()| x);
exists(|_: ()| x);
implies(x, || x);
implies(x, x);
}

let _ = [()].into_iter();
Expand Down

0 comments on commit f1e1994

Please sign in to comment.