summaryrefslogtreecommitdiff
path: root/src/ast.ml
diff options
context:
space:
mode:
authorBrian Campbell2017-10-25 12:25:42 +0100
committerBrian Campbell2017-10-25 12:25:42 +0100
commitfd70c99777002114be5d14a89f169f6e239b9cac (patch)
tree3e3472a89298f4e04fa3d56acebb900eb2f6201d /src/ast.ml
parent63e6dc9ac7effde553cd446cc737a0ec28c5f39d (diff)
parentc4fafd80d816fd06a4091c217c43e232ac9a8706 (diff)
Merge branch 'experiments' into mono-experiments
Diffstat (limited to 'src/ast.ml')
-rw-r--r--src/ast.ml5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/ast.ml b/src/ast.ml
index 6f702a78..ec1d4d34 100644
--- a/src/ast.ml
+++ b/src/ast.ml
@@ -519,8 +519,7 @@ type
| DEC_typ_alias of typ * id * 'a alias_spec
-type
-'a default_spec =
+type default_spec =
DT_aux of default_spec_aux * l
@@ -568,7 +567,7 @@ and 'a def = (* Top-level definition *)
| DEF_spec of 'a val_spec (* top-level type constraint *)
| DEF_fixity of prec * int * id (* fixity declaration *)
| DEF_overload of id * id list (* operator overload specification *)
- | DEF_default of 'a default_spec (* default kind and type assumptions *)
+ | DEF_default of default_spec (* default kind and type assumptions *)
| DEF_scattered of 'a scattered_def (* scattered function and type definition *)
| DEF_reg_dec of 'a dec_spec (* register declaration *)
| DEF_comm of 'a dec_comm (* generated comments *)