packages feed

purescript-0.12.2: tests/purs/warning/WildcardInferredType.purs

-- @shouldWarnWith WildcardInferredType
-- @shouldWarnWith WildcardInferredType
module Main where

x = 0 :: _

y :: _
y = 0

z :: Int
z =
  let n :: _
      n = 0
  in n