packages feed

aihc-parser-1.0.0.2: test/Test/Fixtures/oracle/haskell2010/patterns/guards.hs

{- ORACLE_TEST pass -}
module P5 where
x n
  | n < 0 = -1
  | n == 0 = 0
  | otherwise = 1