summaryrefslogtreecommitdiff
path: root/compiler/LlbcAst.ml
diff options
context:
space:
mode:
Diffstat (limited to 'compiler/LlbcAst.ml')
-rw-r--r--compiler/LlbcAst.ml6
1 files changed, 3 insertions, 3 deletions
diff --git a/compiler/LlbcAst.ml b/compiler/LlbcAst.ml
index f4d26e18..e071b36f 100644
--- a/compiler/LlbcAst.ml
+++ b/compiler/LlbcAst.ml
@@ -2,15 +2,15 @@ open Types
open Values
include Charon.LlbcAst
-type abs_region_group = (AbstractionId.id, RegionId.id) g_region_group
+type abs_region_group = (RegionId.id, AbstractionId.id) g_region_group
[@@deriving show]
-type abs_region_groups = (AbstractionId.id, RegionId.id) g_region_groups
-[@@deriving show]
+type abs_region_groups = abs_region_group list [@@deriving show]
(** A function signature, after instantiation *)
type inst_fun_sig = {
regions_hierarchy : abs_region_groups;
+ trait_type_constraints : trait_type_constraint list;
inputs : rty list;
output : rty;
}