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
CorePragma l s e -> liftM (CorePragma l s) (fix e)
SCCPragma l s e -> liftM (SCCPragma l s) (fix e)
GenPragma l s ab cd e -> liftM (GenPragma l s ab cd) (fix e)
LCase l alts -> liftM (LCase l) $mapM fix alts
_ ->return e'
. As a result, fixity resolution is not performed inside tuple sections, which causes upstream issues such as ndmitchell/hlint#673 found by @cocreature
The text was updated successfully, but these errors were encountered:
The code for
leafFix
misses a case forTupleSection
, seehaskell-src-exts/src/Language/Haskell/Exts/Fixity.hs
Lines 382 to 426 in eee7427
The text was updated successfully, but these errors were encountered: