Merge branch 'master' of http://darcs.haskell.org/ghc
[ghc-hetmet.git] / compiler / hsSyn / HsPat.lhs-boot
1 \begin{code}
2 module HsPat where
3 import SrcLoc( Located )
4
5 import Data.Data
6
7 data Pat i
8 type LPat i = Located (Pat i)
9
10 instance Typeable1 Pat
11 instance Data i => Data (Pat i)
12 \end{code}