-- | Empty module to trick Cabal into installing

module Interlude ( module Prelude
                 , report_bug
                 )where

import Prelude hiding (head,tail,read,undefined)

report_bug :: String -> String -> String -> Int -> ()
report_bug function message file line = error $
    "Program error: '"++function++"' failed: "++message
    ++". Location: "++file++" line: "++ show line