summaryrefslogtreecommitdiff
path: root/compiler/parser/Parser.y
diff options
context:
space:
mode:
Diffstat (limited to 'compiler/parser/Parser.y')
-rw-r--r--compiler/parser/Parser.y10
1 files changed, 5 insertions, 5 deletions
diff --git a/compiler/parser/Parser.y b/compiler/parser/Parser.y
index ed6f5ad4c8..5a862a8058 100644
--- a/compiler/parser/Parser.y
+++ b/compiler/parser/Parser.y
@@ -1606,14 +1606,14 @@ ctypedoc :: { LHsType RdrName }
-- Thus for some reason we allow f :: a~b => blah
-- but not f :: ?x::Int => blah
context :: { LHsContext RdrName }
- : btype '~' btype {% amms (checkContext
- (sLL $1 $> $ HsEqTy $1 $3))
- [mj AnnTilde $2] }
- | btype {% do { ctx <- checkContext $1
+ : btype '~' btype {% do { (anns,ctx) <- checkContext
+ (sLL $1 $> $ HsEqTy $1 $3)
+ ; ams ctx (mj AnnTilde $2:anns) } }
+ | btype {% do { (anns,ctx) <- checkContext $1
; if null (unLoc ctx)
then addAnnotation (gl $1) AnnUnit (gl $1)
else return ()
- ; return ctx
+ ; ams ctx anns
} }
type :: { LHsType RdrName }