diff options
author | Ian Lynagh <igloo@earth.li> | 2008-08-06 11:06:12 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2008-08-06 11:06:12 +0000 |
commit | 44560f9c0e09958de101cb95a5164867d23023be (patch) | |
tree | 758bee5f079bb2c63d7aecf7341d090b444909a4 /libraries/ghc-prim/GHC/Tuple.hs | |
parent | 95f973909fd249a951c6701ce004b8b1a26321b9 (diff) | |
download | haskell-44560f9c0e09958de101cb95a5164867d23023be.tar.gz |
Add some GHC.Generics imports so we can find Inl etc where we need to
Diffstat (limited to 'libraries/ghc-prim/GHC/Tuple.hs')
-rw-r--r-- | libraries/ghc-prim/GHC/Tuple.hs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libraries/ghc-prim/GHC/Tuple.hs b/libraries/ghc-prim/GHC/Tuple.hs index dac7a4f29b..01ece26f9f 100644 --- a/libraries/ghc-prim/GHC/Tuple.hs +++ b/libraries/ghc-prim/GHC/Tuple.hs @@ -15,6 +15,9 @@ module GHC.Tuple where +-- We need Inl etc behind the scenes for the tuple definitions +import GHC.Generics () + default () -- Double and Inteegr aren't available yet data (,) a b = (,) a b |