diff options
Diffstat (limited to '')
-rw-r--r-- | src/LlbcAst.ml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/LlbcAst.ml b/src/LlbcAst.ml index f5ffc956..6e77cadb 100644 --- a/src/LlbcAst.ml +++ b/src/LlbcAst.ml @@ -33,7 +33,7 @@ type assumed_fun_id = (** `core::ops::index::IndexMut::index_mut<alloc::vec::Vec<T>, usize>` *) [@@deriving show, ord] -type fun_id = Local of FunDeclId.id | Assumed of assumed_fun_id +type fun_id = Regular of FunDeclId.id | Assumed of assumed_fun_id [@@deriving show, ord] type assertion = { cond : operand; expected : bool } [@@deriving show] |