packages feed

purescript-0.12.0: tests/purs/warning/2411.purs

-- @shouldWarnWith ShadowedName
module Main where

import Prelude

import Effect (Effect)

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

main :: Effect Unit
main = test 42