shithub: MicroHs

ref: f5cacb9496b3a9e073d04b3eea27bae3fb37c4dc
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"