diff options
author | Adam Chlipala <adamc@hcoop.net> | 2008-07-22 15:12:20 -0400 |
---|---|---|
committer | Adam Chlipala <adamc@hcoop.net> | 2008-07-22 15:12:20 -0400 |
commit | e8ceaa0ae216c7c85e810998ab97989e7a83c82d (patch) | |
tree | f26deeee6825b28bb3e6005523f887de3c1a79a4 /src/mono.sml | |
parent | b1997d2e699e92e83f7130b7b4a4c5467dcdcd27 (diff) |
Simple forms work
Diffstat (limited to 'src/mono.sml')
-rw-r--r-- | src/mono.sml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mono.sml b/src/mono.sml index 22a5a8e0..13ba3adf 100644 --- a/src/mono.sml +++ b/src/mono.sml @@ -62,7 +62,7 @@ withtype exp = exp' located datatype decl' = DVal of string * int * typ * exp * string | DValRec of (string * int * typ * exp * string) list - | DExport of string * int * typ list + | DExport of Core.export_kind * string * int * typ list withtype decl = decl' located |