purescript-0.9.1: examples/failing/RowConstructors3.purs
-- @shouldFailWith KindsDoNotUnify
module Main where
import Control.Monad.Eff.Console (log)
type Foo = { x :: Number }
type Bar = { | Foo }
main = log "Done"
-- @shouldFailWith KindsDoNotUnify
module Main where
import Control.Monad.Eff.Console (log)
type Foo = { x :: Number }
type Bar = { | Foo }
main = log "Done"