aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/source.sml
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adamc@hcoop.net>2009-05-28 12:07:05 -0400
committerGravatar Adam Chlipala <adamc@hcoop.net>2009-05-28 12:07:05 -0400
commita735f6ea0ef8ec5895dfe7f895f89ee8c126de14 (patch)
tree702dbe43701e15a37f7811983aad78e069812704 /src/source.sml
parent43cd4231dea11d2cbb0151f144e4a98c618df396 (diff)
Destructing local let, to the point where demo compiles
Diffstat (limited to 'src/source.sml')
-rw-r--r--src/source.sml2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/source.sml b/src/source.sml
index bfa270d8..c5950b36 100644
--- a/src/source.sml
+++ b/src/source.sml
@@ -138,7 +138,7 @@ and exp' =
| ELet of edecl list * exp
and edecl' =
- EDVal of string * con option * exp
+ EDVal of pat * exp
| EDValRec of (string * con option * exp) list
withtype sgn_item = sgn_item' located