summaryrefslogtreecommitdiff
path: root/compiler/Substitute.ml
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--compiler/Substitute.ml3
1 files changed, 1 insertions, 2 deletions
diff --git a/compiler/Substitute.ml b/compiler/Substitute.ml
index 9adbbcba..fdb07535 100644
--- a/compiler/Substitute.ml
+++ b/compiler/Substitute.ml
@@ -472,12 +472,11 @@ let typed_avalue_subst_rids (rsubst : T.RegionId.id -> T.RegionId.id)
let env_subst_rids (rsubst : T.RegionId.id -> T.RegionId.id) (x : C.env) : C.env
=
- let asubst _ = raise (Failure "Unreachable") in
(subst_ids_visitor rsubst
(fun x -> x)
(fun x -> x)
(fun x -> x)
(fun x -> x)
- asubst)
+ (fun x -> x))
#visit_env
x