-- Copyright (c) 2020-2023, Shayne Fletcher. All rights reserved.
-- SPDX-License-Identifier: BSD-3-Clause.

#include "ghclib_api.h"
module Language.Haskell.GhclibParserEx.GHC.Utils.Outputable (
    unsafePrettyPrint
)
where

#if defined (GHC_8_8) || defined (GHC_8_10)
import Outputable
#else
import GHC.Utils.Outputable
#endif

unsafePrettyPrint :: Outputable a => a -> String
unsafePrettyPrint :: forall a. Outputable a => a -> String
unsafePrettyPrint =
#if ! ( defined (GHC_9_2) || defined (GHC_9_0) || defined (GHC_8_10) || defined (GHC_8_8) )
  SDoc -> String
forall a. Outputable a => a -> String
showPprUnsafe (SDoc -> String) -> (a -> SDoc) -> a -> String
forall b c a. (b -> c) -> (a -> b) -> a -> c
. a -> SDoc
forall a. Outputable a => a -> SDoc
ppr
#else
  showSDocUnsafe . ppr
#endif