summaryrefslogtreecommitdiff
path: root/testsuite/tests/codeGen/should_run/cgrun057.hs
blob: 98f90db15a76700b2fac9bb591056ba6adb3ac8a (plain)
1
2
3
4
5
6
7
-- For testing +RTS -xc
import Control.Exception
main = try (evaluate (f ())) :: IO (Either SomeException ())

f x = g x

g x = error (show x)