diff options
author | Adam Chlipala <adamc@hcoop.net> | 2009-05-16 15:45:12 -0400 |
---|---|---|
committer | Adam Chlipala <adamc@hcoop.net> | 2009-05-16 15:45:12 -0400 |
commit | 41f7bb23ff2a9598f8f3bff1487f39f9e91f9f05 (patch) | |
tree | c5073d9b7f368aa38bb4d146c0a6b21900ef1f79 /src/core.sml | |
parent | 6cb3888614811abc30c6a00a1644e256d1d1c780 (diff) |
Mutual datatypes through Effectize
Diffstat (limited to 'src/core.sml')
-rw-r--r-- | src/core.sml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core.sml b/src/core.sml index 131bcc6f..e7466746 100644 --- a/src/core.sml +++ b/src/core.sml @@ -124,7 +124,7 @@ datatype export_kind = datatype Export.export_kind datatype decl' = DCon of string * int * kind * con - | DDatatype of string * int * string list * (string * int * con option) list + | DDatatype of (string * int * string list * (string * int * con option) list) list | DVal of string * int * con * exp * string | DValRec of (string * int * con * exp * string) list | DExport of export_kind * int |