From 4aa9cab4d33943122d36ac88d47bbe104e97f137 Mon Sep 17 00:00:00 2001 From: simonpj Date: Mon, 16 Sep 2002 11:24:20 +0000 Subject: [PATCH] [project @ 2002-09-16 11:24:20 by simonpj] Comments only --- GHC/Base.lhs | 3 +++ 1 file changed, 3 insertions(+) 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 -- 1.7.10.4