packages feed

purescript-0.15.7: tests/purs/failing/DuplicateDeclarationsInLet.purs

-- @shouldFailWith OverlappingNamesInLet
module Main where

foo = a
  where
  a :: Number
  a = 1

  a :: Number
  a = 2