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