packages feed

aihc-parser-1.0.0.2: test/Test/Fixtures/oracle/LocalFixity/local-infix-multi-ops.hs

{- ORACLE_TEST pass -}
f x = x .>. (y .<. z)
  where
    infixl 4 .>., .<.
    (.>.) = (>)
    (.<.) = (<)
    y = 10
    z = 5