purescript-0.7.2.0: examples/failing/DuplicateDeclarationsInLet.purs
-- @shouldFailWith OverlappingNamesInLet module Main where import Prelude foo = a where a :: Number a = 1 a :: Number a = 2
-- @shouldFailWith OverlappingNamesInLet module Main where import Prelude foo = a where a :: Number a = 1 a :: Number a = 2