From 2c3412138019d6b42a9974f7d8c7853c86ec96d5 Mon Sep 17 00:00:00 2001 From: "simonpj@microsoft.com" Date: Thu, 31 Mar 2011 10:21:16 +0000 Subject: [PATCH] Re-enable assertion now the new type checker is in (See Trac #3011.) --- compiler/typecheck/TcMType.lhs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compiler/typecheck/TcMType.lhs b/compiler/typecheck/TcMType.lhs index 9d74ff8..7453334 100644 --- a/compiler/typecheck/TcMType.lhs +++ b/compiler/typecheck/TcMType.lhs @@ -364,8 +364,8 @@ writeMetaTyVarRef tyvar ref ty | otherwise = do { meta_details <- readMutVar ref; - ; WARN( not (isFlexi meta_details), - hang (text "Double update of meta tyvar") + ; ASSERT2( isFlexi meta_details, + hang (text "Double update of meta tyvar") 2 (ppr tyvar $$ ppr meta_details) ) traceTc "writeMetaTyVar" (ppr tyvar <+> text ":=" <+> ppr ty) -- 1.7.10.4