summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Gamari <ben@smart-cactus.org>2016-03-29 13:34:45 +0200
committerBen Gamari <ben@smart-cactus.org>2016-03-29 13:34:45 +0200
commitb0ab8db61568305f50947058fc5573e2382c84eb (patch)
tree81119cb20ed2f3cc0fae95f37184acfd9e1c293f
parent5097f3802124cfbe6810bff8110df91d4c52096b (diff)
downloadhaskell-b0ab8db61568305f50947058fc5573e2382c84eb.tar.gz
base: Add comment noting import loop
-rw-r--r--libraries/base/Data/Functor/Classes.hs2
1 files changed, 2 insertions, 0 deletions
diff --git a/libraries/base/Data/Functor/Classes.hs b/libraries/base/Data/Functor/Classes.hs
index 5f1b12c84d..ce84af0533 100644
--- a/libraries/base/Data/Functor/Classes.hs
+++ b/libraries/base/Data/Functor/Classes.hs
@@ -355,6 +355,8 @@ instance (Read a) => Read1 (Const a) where
instance (Show a) => Show1 (Const a) where
liftShowsPrec = liftShowsPrec2 showsPrec showList
+-- Proxy unfortunately imports this module, hence these instances are placed
+-- here,
-- | @since 4.9.0.0
instance Eq1 Proxy where
liftEq _ _ _ = True