aihc-parser-1.0.0.2: test/Test/Fixtures/oracle/haskell2010/declarations/infix-funlhs-minus-constructor-patterns.hs
{- ORACLE_TEST pass -}
module InfixFunlhsMinusConstructorPatterns where
data P = Z | S P
-- Infix function head with minus operator and constructor patterns
S m - S n = m - n
Z - x = x
x - Z = x