[project @ 2002-05-28 08:38:19 by simonpj]
[ghc-hetmet.git] / ghc / compiler / rename / RnTypes.lhs
index fd6a218..74fc881 100644 (file)
@@ -214,8 +214,7 @@ mkHsOpTyRn op1 fix1 ty1 ty2@(HsOpTy ty21 op2 ty22)
     returnRn (HsOpTy ty1 op1 ty2)
 
 mkHsOpTyRn op fix ty1 ty2                      -- Default case, no rearrangment
-  = ASSERT( not_op_ty ty1 )
-    returnRn (HsOpTy ty1 op ty2)
+  = returnRn (HsOpTy ty1 op ty2)
 
 mkHsFunTyRn ty1 ty2                    -- Precedence of function arrow is 0
   = returnRn (HsFunTy ty1 ty2)         -- so no rearrangement reqd.  Change