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
This Haskell file compiles just fine with ghc 8.10.
{-# LANGUAGE ParallelListComp #-}
main =undefined
b =undefined
c =undefined
d =undefined
e =undefined
a = [ b
| c
| d <- e
]
But running brittany 0.13.1.1 on it causes it to print an error: ERROR: brittany pretty printer returned syntactically invalid result.
Running with --output-on-errors produces this output
{-# LANGUAGE ParallelListComp #-}
main =undefined
b =undefined
c =undefined
d =undefined
e =undefined
a = [ b | c d <- e ]
This Haskell file compiles just fine with ghc 8.10.
But running brittany 0.13.1.1 on it causes it to print an error:
ERROR: brittany pretty printer returned syntactically invalid result.
Running with
--output-on-errors
produces this outputbrittany.yaml
The text was updated successfully, but these errors were encountered: