summaryrefslogtreecommitdiff
path: root/compiler/GHC/Hs/Pat.hs-boot
blob: be8bcdf72f8906790070bb52a538e2000b67a1dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{-# 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))