Skip to content

Commit

Permalink
fix(macros): forall and exists return props
Browse files Browse the repository at this point in the history
  • Loading branch information
W95Psp committed Feb 12, 2025
1 parent e49ac46 commit ffb6b22
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hax-lib/macros/src/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ impl ToTokens for HaxQuantifiers {
#AttrHaxLang
#status_attr
fn forall<T, U:Into<hax_lib::Prop>, F: Fn(T) -> U>(f: F) -> hax_lib::Prop {
true
true.into()
}
#AttrHaxLang
#status_attr
fn exists<T, U:Into<hax_lib::Prop>, F: Fn(T) -> U>(f: F) -> hax_lib::Prop {
true
true.into()
}

use ::hax_lib::fstar_unsafe_expr as fstar;
Expand Down

0 comments on commit ffb6b22

Please sign in to comment.