File tree 2 files changed +5
-5
lines changed
test-harness/src/snapshots
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -943,7 +943,7 @@ struct
943
943
if is_lemma then mk [] " Lemma" else prims " Pure"
944
944
else prims " Tot"
945
945
in
946
- F. mk_e_app effect (if is_lemma then args else typ :: args)
946
+ F. mk_e_app effect (if is_lemma then List. drop args 1 else typ :: args)
947
947
948
948
(* * Prints doc comments out of a list of attributes *)
949
949
let pdoc_comments attrs =
Original file line number Diff line number Diff line change @@ -565,10 +565,10 @@ let issue_844_ (e_x: u8)
565
565
true ) = e_x
566
566
567
567
let add3_lemma (x : u32 )
568
- : Lemma Prims . l_True
569
- (ensures
570
- x <=. mk_u32 10 || x >=. (u32_max /! mk_u32 3 <: u32 ) ||
571
- (add3 x x x <: u32 ) =. (x *! mk_u32 3 <: u32 )) = ()
568
+ : Lemma
569
+ (ensures
570
+ x <=. mk_u32 10 || x >=. (u32_max /! mk_u32 3 <: u32 ) ||
571
+ (add3 x x x <: u32 ) =. (x *! mk_u32 3 <: u32 )) = ()
572
572
573
573
type t_Foo = {
574
574
f_x: u32 ;
You can’t perform that action at this time.
0 commit comments