~ubuntu-branches/ubuntu/raring/haskell-quickcheck/raring

« back to all changes in this revision

Viewing changes to Test/QuickCheck/Gen.hs

  • Committer: Bazaar Package Importer
  • Author(s): Giovanni Mascellani
  • Date: 2011-05-03 19:38:47 UTC
  • mfrom: (15.1.3 sid)
  • Revision ID: james.westby@ubuntu.com-20110503193847-1nqtw3k2ekhla2aw
Tags: 2.4.1.1-1
* Team upload.
* New upstream release
* Using Template Haskell only on archtectures that support it.
* Standards-Version bumped to 3.9.1 (no changes required).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
-- | Test case generation.
1
2
module Test.QuickCheck.Gen where
2
3
 
3
4
--------------------------------------------------------------------------
20
21
  ( Applicative(..)
21
22
  )
22
23
 
23
 
import Control.Monad.Reader()
24
 
  -- needed for "instance Monad (a ->)"
25
 
  
26
 
  -- 2005-09-16:
27
 
  -- GHC gives a warning for this. I reported this as a bug. /Koen
28
 
 
29
 
 
30
24
--------------------------------------------------------------------------
31
25
-- ** Generator type
32
26