Fix CodingStyle#Warnings URLs
[ghc-hetmet.git] / compiler / deSugar / MatchCon.lhs
index 3f25fc7..8a8e49c 100644 (file)
@@ -6,6 +6,13 @@
 Pattern-matching constructors
 
 \begin{code}
+{-# OPTIONS -w #-}
+-- The above warning supression flag is a temporary kludge.
+-- While working on this module you are encouraged to remove it and fix
+-- any warnings in the module. See
+--     http://hackage.haskell.org/trac/ghc/wiki/Commentary/CodingStyle#Warnings
+-- for details
+
 module MatchCon ( matchConFamily ) where
 
 #include "HsVersions.h"
@@ -119,11 +126,11 @@ conArgPats :: DataCon
           -> [Type]    -- Instantiated argument types 
                        -- Used only to fill in the types of WildPats, which
                        -- are probably never looked at anyway
-          -> HsConDetails Id (LPat Id)
+          -> HsConDetails (LPat Id) (HsRecFields Id (LPat Id))
           -> [Pat Id]
 conArgPats data_con arg_tys (PrefixCon ps)   = map unLoc ps
 conArgPats data_con arg_tys (InfixCon p1 p2) = [unLoc p1, unLoc p2]
-conArgPats data_con arg_tys (RecCon rpats)
+conArgPats data_con arg_tys (RecCon (HsRecFields rpats _))
   | null rpats
   =    -- Special case for C {}, which can be used for 
        -- a constructor that isn't declared to have