blob: 3aa7a7711f199ce2ef33d960d91eba9e528ba34b (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
{-# OPTIONS_GHC -fno-warn-orphans #-}
module GHC.Core.Ppr where
import {-# SOURCE #-} GHC.Core
import {-# SOURCE #-} GHC.Types.Var (Var)
import GHC.Utils.Outputable (OutputableBndr, Outputable)
instance OutputableBndr b => Outputable (Expr b)
instance OutputableBndr Var
|