aihc-parser-1.0.0.2: test/Test/Fixtures/oracle/ParallelListComp/parallel-list-comp-basic.hs
{- ORACLE_TEST pass -}
module ParallelListCompBasic where
pairs :: [a] -> [b] -> [(a, b)]
pairs xs ys = [ (x, y) | x <- xs | y <- ys ]{- ORACLE_TEST pass -}
module ParallelListCompBasic where
pairs :: [a] -> [b] -> [(a, b)]
pairs xs ys = [ (x, y) | x <- xs | y <- ys ]