packages feed

liquidhaskell-0.4.0.0: tests/pos/failName.hs

module Crash where

bar = fail
  where fail = foo
        foo = 3 -- undefined


bar1 = fail ()
  where fail = foo
        foo = undefined