summaryrefslogtreecommitdiff
path: root/src/lacweb.grm
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adamc@hcoop.net>2008-06-08 13:00:12 -0400
committerGravatar Adam Chlipala <adamc@hcoop.net>2008-06-08 13:00:12 -0400
commitd44758dd02286c136aecaab935fb692761bdc9a6 (patch)
tree38a367b08031b8dfccb11bd3d62043664b5a8b67 /src/lacweb.grm
parent32115a531d5ed6cafa25dc7d3b88c2679e5142a5 (diff)
Implicit constructor arguments
Diffstat (limited to 'src/lacweb.grm')
-rw-r--r--src/lacweb.grm2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lacweb.grm b/src/lacweb.grm
index 775cb31c..12cc0378 100644
--- a/src/lacweb.grm
+++ b/src/lacweb.grm
@@ -108,7 +108,7 @@ capps : cterm (cterm)
cexp : capps (capps)
| cexp ARROW cexp (TFun (cexp1, cexp2), s (cexp1left, cexp2right))
- | SYMBOL kcolon kind ARROW cexp (TCFun (kcolon, SYMBOL, kind, cexp), s (SYMBOLleft, cexpright))
+ | SYMBOL kcolon kind ARROW cexp (TCFun (kcolon, SYMBOL, kind, cexp), s (SYMBOLleft, cexpright))
| cexp PLUSPLUS cexp (CConcat (cexp1, cexp2), s (cexp1left, cexp1right))