packages feed

hls-tactics-plugin-1.2.0.0: test/golden/EmptyCaseShadow.expected.hs

data Foo = A Int | B Bool | C

-- Make sure we don't shadow the i and b bindings when we empty case
-- split
foo :: Int -> Bool -> Foo -> ()
foo i b x = case x of
  A n -> _
  B b' -> _
  C -> _