From c9376729d535a13fc51b0270fe4a9b171888fc7b Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Mon, 4 Mar 2019 21:05:16 -0500 Subject: [PATCH] src/Point.hs: import "arbitrary" explicitly. --- src/Point.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Point.hs b/src/Point.hs index 54c4f72..004b2e4 100644 --- a/src/Point.hs +++ b/src/Point.hs @@ -6,7 +6,7 @@ module Point ( scale ) where -import Test.Tasty.QuickCheck ( Arbitrary(..) ) +import Test.Tasty.QuickCheck ( Arbitrary( arbitrary ) ) -- | Represents a point in three dimensions. We use a custom type (as -- 2.43.2