blob: 54200c320f52b7721a010b4bbb65ba3b4fc9c21c (
plain)
1
2
3
4
5
6
7
8
9
10
|
{-# LANGUAGE CPP #-}
#if __GLASGOW_HASKELL__ >= 707
{-# OPTIONS_GHC -fno-warn-amp #-}
#endif
module T7145b ( A.Applicative(pure) ) where
import qualified Control.Applicative as A
pure :: ()
pure = ()
|