From: Michael Orlitzky Date: Tue, 5 Mar 2019 02:05:16 +0000 (-0500) Subject: src/Point.hs: import "arbitrary" explicitly. X-Git-Tag: 1.0.1~26 X-Git-Url: http://gitweb.michael.orlitzky.com/?p=spline3.git;a=commitdiff_plain;h=c9376729d535a13fc51b0270fe4a9b171888fc7b;hp=b6f84e979fd6c5a5e62b53143e737a28d8ed64a7 src/Point.hs: import "arbitrary" explicitly. --- 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