summaryrefslogtreecommitdiff
path: root/compiler/GHC/Hs/Pat.hs-boot
blob: f128e6d4eadf3cfab66bedb03b5d34d594998ea3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{-# LANGUAGE FlexibleContexts #-}
{-# LANGUAGE FlexibleInstances #-}
{-# LANGUAGE UndecidableInstances #-} -- Wrinkle in Note [Trees That Grow]
                                      -- in module Language.Haskell.Syntax.Extension

{-# OPTIONS_GHC -Wno-orphans #-} -- Outputable

module GHC.Hs.Pat where

import GHC.Utils.Outputable
import GHC.Hs.Extension ( OutputableBndrId, GhcPass )

import Language.Haskell.Syntax.Pat

instance (OutputableBndrId p) => Outputable (Pat (GhcPass p))

pprLPat :: (OutputableBndrId p) => LPat (GhcPass p) -> SDoc