File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed
tests/filepath-equivalent-tests Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -145,6 +145,7 @@ test-suite filepath-equivalent-tests
145145 , os-string >= 2.0.1
146146 , tasty
147147 , tasty-quickcheck
148+ , QuickCheck
148149
149150test-suite abstract-filepath
150151 default-language : Haskell2010
Original file line number Diff line number Diff line change 1+ {-# LANGUAGE CPP #-}
12{-# LANGUAGE OverlappingInstances #-}
23{-# LANGUAGE FlexibleInstances #-}
34{-# LANGUAGE DeriveGeneric #-}
@@ -196,7 +197,8 @@ instance Arbitrary [Separator] where
196197 arbitrary = listOf' arbitrary
197198 shrink = genericShrink
198199
200+ #if !MIN_VERSION_QuickCheck(2,17,0)
199201instance Arbitrary a => Arbitrary (NonEmpty a ) where
200202 arbitrary = NE. fromList <$> listOf1' arbitrary
201203 shrink = genericShrink
202-
204+ #endif
You can’t perform that action at this time.
0 commit comments