diff options
author | Simon Peyton Jones <simonpj@microsoft.com> | 2019-02-19 08:46:34 +0000 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2019-02-20 10:17:34 -0500 |
commit | 3f73f081d675fd35ee0af0facc05a046d379ef26 (patch) | |
tree | 69f74f8536147880193a5f368250c2f786e9dfa1 | |
parent | 5eeefe4c1e007ea2098f241634b48a4dada785a5 (diff) | |
download | haskell-3f73f081d675fd35ee0af0facc05a046d379ef26.tar.gz |
Comments only, in GhcPrelude
-rw-r--r-- | compiler/utils/GhcPrelude.hs | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/compiler/utils/GhcPrelude.hs b/compiler/utils/GhcPrelude.hs index 3437e65bf4..dd78f15573 100644 --- a/compiler/utils/GhcPrelude.hs +++ b/compiler/utils/GhcPrelude.hs @@ -5,7 +5,11 @@ -- This module serves as a replacement for the "Prelude" module -- and abstracts over differences between the bootstrapping -- GHC version, and may also provide a common default vocabulary. --- + +-- Every module in GHC +-- * Is compiled with -XNoImplicitPrelude +-- * Explicitly imports GhcPrelude + module GhcPrelude (module X) where -- We export the 'Semigroup' class but w/o the (<>) operator to avoid |