purescript-0.7.2.0: examples/failing/DuplicateProperties2.purs
-- @shouldFailWith DuplicateLabel module DuplicateProperties where import Prelude foreign import data Test :: # * -> * foreign import subtractX :: forall r. Test (x :: Unit | r) -> Test r foreign import hasX :: forall r. Test (x :: Unit, y :: Unit | r) baz = subtractX (subtractX hasX)