blob: afe38c27431bb20a35552813d8d1a47c04a96c06 (
plain) (
tree)
|
|
{-# LANGUAGE Haskell2010 #-}
{-# LANGUAGE TemplateHaskell #-}
-- | Ensures haddock built with @-threaded@.
module Threaded where
import Threaded_TH
-- | @$(forkTH)@ fails at compile time if haddock isn't using the
-- threaded RTS.
f = $(forkTH)
|