Initial commit
This commit is contained in:
commit
c101616e62
309 changed files with 53937 additions and 0 deletions
16
bundled/Basement/Compat/AMP.hs
Normal file
16
bundled/Basement/Compat/AMP.hs
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
{-# LANGUAGE BangPatterns #-}
|
||||
{-# LANGUAGE DeriveDataTypeable #-}
|
||||
{-# LANGUAGE TypeFamilies #-}
|
||||
{-# LANGUAGE RebindableSyntax #-}
|
||||
{-# LANGUAGE NoImplicitPrelude #-}
|
||||
{-# LANGUAGE CPP #-}
|
||||
{-# LANGUAGE ConstraintKinds #-}
|
||||
-- a compat module for ghc < 7.10 to handle the AMP change smoothly
|
||||
module Basement.Compat.AMP
|
||||
( AMPMonad
|
||||
) where
|
||||
|
||||
import Basement.Compat.Base
|
||||
|
||||
{-# DEPRECATED AMPMonad "use Monad" #-}
|
||||
type AMPMonad m = Monad m
|
||||
Loading…
Add table
Add a link
Reference in a new issue