All Questions
Tagged with pattern-synonyms quickcheck
1 question
2
votes
1
answer
318
views
How to explicitly import 'Fn' pattern from Test.QuickCheck?
Haskell's Test.QuickCheck module exports pattern Fn, which I have been using.
When I import it with:
import Test.QuickCheck
it works fine. However, when I import it with:
import Test.QuickCheck (Fn)
...