purescript-0.15.15: tests/purs/warning/ShadowedBinderPatternGuard.purs
-- @shouldWarnWith ShadowedName
module Main where
f :: Int -> Int
f _ | i <- true -- this i is shadowed
, i <- 1234
= i
-- @shouldWarnWith ShadowedName
module Main where
f :: Int -> Int
f _ | i <- true -- this i is shadowed
, i <- 1234
= i