diff --git a/src/haz3lcore/dynamics/Elaborator.re b/src/haz3lcore/dynamics/Elaborator.re index 5904052bf..1d27863ee 100644 --- a/src/haz3lcore/dynamics/Elaborator.re +++ b/src/haz3lcore/dynamics/Elaborator.re @@ -314,7 +314,7 @@ let rec elaborate = (m: Statics.Map.t, uexp: UExp.t): (DHExp.t, Typ.t) => { elaborated_type(m, uexp); let cast_from = (ty, exp) => fresh_cast(exp, ty, elaborated_type); - let (term, rewrap) = UExp.unwrap(uexp); + let (_, rewrap) = UExp.unwrap(uexp); let uexp = rewrap(statics_pseudo_elaborated.term); let term = statics_pseudo_elaborated.term; let dhexp = diff --git a/src/haz3lcore/statics/Statics.re b/src/haz3lcore/statics/Statics.re index c46b835c6..d9c5e6c10 100644 --- a/src/haz3lcore/statics/Statics.re +++ b/src/haz3lcore/statics/Statics.re @@ -828,7 +828,7 @@ and uexp_to_info_map = let (term, rewrap) = UExp.unwrap(uexp); let og_exp = Exp.fresh(term); - let (e, m) = + let (_, m) = uexp_to_info_map( ~ctx, ~mode=Mode.Ana(ana_ty),