packages feed

aihc-parser-1.0.0.2: test/Test/Fixtures/oracle/MultiWayIf/non-aligned-guards.hs

{- ORACLE_TEST pass -}
{-# LANGUAGE MultiWayIf #-}
module NonAlignedGuards where

f :: Bool -> Bool -> Int
f x y = if | x -> 1
            | y -> 2
              | otherwise -> 3