From: simonpj Date: Mon, 16 Sep 2002 11:24:20 +0000 (+0000) Subject: [project @ 2002-09-16 11:24:20 by simonpj] X-Git-Tag: nhc98-1-18-release~853 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=4aa9cab4d33943122d36ac88d47bbe104e97f137;p=haskell-directory.git [project @ 2002-09-16 11:24:20 by simonpj] Comments only --- diff --git a/GHC/Base.lhs b/GHC/Base.lhs index e3bc346..fe42991 100644 --- a/GHC/Base.lhs +++ b/GHC/Base.lhs @@ -597,6 +597,9 @@ lazy x = x -- Assertion function. This simply ignores its boolean argument. -- The compiler may rewrite it to (assertError line) +-- SLPJ: in 5.04 etc 'assert' is in GHC.Prim, +-- but from Template Haskell onwards it's simply +-- defined here in Base.lhs assert :: Bool -> a -> a assert pred r = r