packages feed

purescript-0.10.2: examples/warning/2411.purs

-- @shouldWarnWith ShadowedName
module Main where

import Prelude

import Control.Monad.Eff (Eff)

test :: forall m. Monad m => Int -> m Unit
test x =
  let x = unit
  in pure x

main :: Eff () Unit
main = test 42