HaRe-0.8.0.0: test/testdata/Layout/PatBind.hs
module Layout.PatBind where
-- Pattern bind
tup :: (Int, Int)
h :: Int
t :: Int
tup@(h,t) = head $ zip [1..10] [3..ff]
where
ff :: Int
ff = 15
module Layout.PatBind where
-- Pattern bind
tup :: (Int, Int)
h :: Int
t :: Int
tup@(h,t) = head $ zip [1..10] [3..ff]
where
ff :: Int
ff = 15