You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There seems to be a missing version bound for happy. happy-2.0 was released today (or so I gather), and now I get the following error when trying to cabal install:
dist/build/GHC/Parser.hs:5975:24: error: [GHC-58481]
parse error on input ‘<-’
Suggested fix: Possibly caused by a missing 'do'?|
5975 |; mg <- mkPatSynMatchGroup name happy_var_5
| ^^
It seems we need a version bound on happy to happy-1.20 until this issue is fixed,
see haskell/happy#303
The text was updated successfully, but these errors were encountered:
FWIW it built fine for me with happy-1.20.1.1, then I did cabal update; cabal install happy; cabal install --lib --package-env=. haskell-lib-parser and got the above error.
There seems to be a missing version bound for
happy
.happy-2.0
was released today (or so I gather), and now I get the following error when trying tocabal install
:It seems we need a version bound on
happy
tohappy-1.20
until this issue is fixed,see haskell/happy#303
The text was updated successfully, but these errors were encountered: