Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tests/Spec/Data/TupleSpec.hs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Portability: GHC
module Spec.Data.TupleSpec (main, spec) where

import Data.Proxy (Proxy(..))
#if MIN_VERSION_ghc_prim(0,7,0)
#if MIN_VERSION_ghc_prim(0,7,0) && MIN_VERSION_base(4,16,0)
import GHC.Tuple (Solo)
#endif
import Instances.Data.Tuple ()
Expand Down Expand Up @@ -84,7 +84,7 @@ spec = parallel $ do
matchesTextShowSpec (Proxy :: Proxy (Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int))
describe "(Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)" $ do
matchesTextShowSpec (Proxy :: Proxy (Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int, Int))
#if MIN_VERSION_ghc_prim(0,7,0)
#if MIN_VERSION_ghc_prim(0,7,0) && MIN_VERSION_base(4,16,0)
describe "Solo Int" $ do
let p :: Proxy (Solo Int)
p = Proxy
Expand Down
Loading