diff options
author | Simon Jakobi <simon.jakobi@gmail.com> | 2018-10-23 10:53:22 +0200 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2018-10-26 13:30:54 -0400 |
commit | 23956b2ada690c78a134fe6d149940c777c7efcc (patch) | |
tree | 1a2144fd11151d67de47e13b8d6b53e05672aa3d | |
parent | 503514b94f8dc7bd9eab5392206649aee45f140b (diff) | |
download | haskell-23956b2ada690c78a134fe6d149940c777c7efcc.tar.gz |
Remove redundant SOURCE import
-rw-r--r-- | compiler/prelude/PrelInfo.hs | 2 | ||||
-rw-r--r-- | compiler/typecheck/TcTypeNats.hs-boot | 5 |
2 files changed, 1 insertions, 6 deletions
diff --git a/compiler/prelude/PrelInfo.hs b/compiler/prelude/PrelInfo.hs index a76a78adc9..aab23de20f 100644 --- a/compiler/prelude/PrelInfo.hs +++ b/compiler/prelude/PrelInfo.hs @@ -70,7 +70,7 @@ import Class import TyCon import UniqFM import Util -import {-# SOURCE #-} TcTypeNats ( typeNatTyCons ) +import TcTypeNats ( typeNatTyCons ) import Control.Applicative ((<|>)) import Data.List ( intercalate ) diff --git a/compiler/typecheck/TcTypeNats.hs-boot b/compiler/typecheck/TcTypeNats.hs-boot deleted file mode 100644 index 12f3e41b3f..0000000000 --- a/compiler/typecheck/TcTypeNats.hs-boot +++ /dev/null @@ -1,5 +0,0 @@ -module TcTypeNats where - -import TyCon (TyCon) - -typeNatTyCons :: [TyCon] |