purescript-0.12.0: tests/purs/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