shithub: MicroHs

ref: e1a569f2b532e6f37d1cb25a19a584814f89b59b
dir: /lib/Control/Error.hs/

View raw version
-- Copyright 2023 Lennart Augustsson
-- See LICENSE file for full license.
module Control.Error(module Control.Error) where
import Primitives

error :: forall a . [Char] -> a
error = primError

undefined :: forall a . a
undefined = error "undefined"