GHC.Base.breakpoint
authorLemmih <lemmih@gmail.com>
Fri, 7 Apr 2006 12:58:27 +0000 (12:58 +0000)
committerLemmih <lemmih@gmail.com>
Fri, 7 Apr 2006 12:58:27 +0000 (12:58 +0000)
GHC/Base.lhs

index 8278dbb..2cca920 100644 (file)
@@ -711,7 +711,10 @@ lazy x = x
 --     defined here in Base.lhs
 assert :: Bool -> a -> a
 assert pred r = r
+
+breakpoint :: a -> a
+breakpoint r = r
+
 -- | Constant function.
 const                  :: a -> b -> a
 const x _              =  x