{-# OPTIONS_GHC -fomit-interface-pragmas #-}
module GHC.StaticPtr.Internal (makeStatic) where
import GHC.StaticPtr(StaticPtr)
makeStatic :: (Int, Int) -> a -> StaticPtr a
makeStatic :: forall a. (Int, Int) -> a -> StaticPtr a
makeStatic (Int
line, Int
col) a
_ =
[Char] -> StaticPtr a
forall a. HasCallStack => [Char] -> a
error ([Char] -> StaticPtr a) -> [Char] -> StaticPtr a
forall a b. (a -> b) -> a -> b
$ [Char]
"GHC bug - makeStatic: Unresolved static form at line "
[Char] -> [Char] -> [Char]
forall a. [a] -> [a] -> [a]
++ Int -> [Char]
forall a. Show a => a -> [Char]
show Int
line [Char] -> [Char] -> [Char]
forall a. [a] -> [a] -> [a]
++ [Char]
", column " [Char] -> [Char] -> [Char]
forall a. [a] -> [a] -> [a]
++ Int -> [Char]
forall a. Show a => a -> [Char]
show Int
col [Char] -> [Char] -> [Char]
forall a. [a] -> [a] -> [a]
++ [Char]
"."