diff options
author | Ben Gamari <ben@smart-cactus.org> | 2016-03-29 13:34:45 +0200 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2016-03-29 13:34:45 +0200 |
commit | b0ab8db61568305f50947058fc5573e2382c84eb (patch) | |
tree | 81119cb20ed2f3cc0fae95f37184acfd9e1c293f /libraries/base/Data | |
parent | 5097f3802124cfbe6810bff8110df91d4c52096b (diff) | |
download | haskell-b0ab8db61568305f50947058fc5573e2382c84eb.tar.gz |
base: Add comment noting import loop
Diffstat (limited to 'libraries/base/Data')
-rw-r--r-- | libraries/base/Data/Functor/Classes.hs | 2 |
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 |