summaryrefslogtreecommitdiffstats
path: root/parsing/parser.mly
diff options
context:
space:
mode:
Diffstat (limited to 'parsing/parser.mly')
-rw-r--r--parsing/parser.mly3
1 files changed, 2 insertions, 1 deletions
diff --git a/parsing/parser.mly b/parsing/parser.mly
index c6b3c4de6..f723e5aeb 100644
--- a/parsing/parser.mly
+++ b/parsing/parser.mly
@@ -2008,10 +2008,11 @@ label_longident:
type_longident:
type_ident { Lident $1 }
| mod_ext_longident DOT type_ident { Ldot($1, $3) }
+ | BANG constr_longident { $2 }
;
type_ident:
LIDENT { $1 }
- | LIDENT DOT UIDENT { $1 ^ "." ^ $3 }
+/* | LIDENT DOT UIDENT { $1 ^ "." ^ $3 } */
;
mod_longident:
UIDENT { Lident $1 }