diff options
author | Simon Peyton Jones <simonpj@microsoft.com> | 2015-05-13 10:18:23 +0100 |
---|---|---|
committer | Simon Peyton Jones <simonpj@microsoft.com> | 2015-05-13 10:18:23 +0100 |
commit | a8493e03b89f3b3bfcdb6005795de050501f5c29 (patch) | |
tree | 47261eaf1745dad42a38712f2986da56eeccf40f /compiler/main | |
parent | a154944bf07b2e13175519bafebd5a03926bf105 (diff) | |
download | haskell-a8493e03b89f3b3bfcdb6005795de050501f5c29.tar.gz |
Fix imports in HscMain (stage2)
Diffstat (limited to 'compiler/main')
-rw-r--r-- | compiler/main/HscMain.hs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/compiler/main/HscMain.hs b/compiler/main/HscMain.hs index 47d4515a14..5ae104b1da 100644 --- a/compiler/main/HscMain.hs +++ b/compiler/main/HscMain.hs @@ -90,9 +90,7 @@ import BasicTypes ( HValue ) import ByteCodeGen ( byteCodeGen, coreExprToBCOs ) import Linker import CoreTidy ( tidyExpr ) -import Type ( Type ) -import PrelNames -import {- Kind parts of -} Type ( Kind ) +import Type ( Type, Kind ) import CoreLint ( lintInteractiveExpr ) import VarEnv ( emptyTidyEnv ) import Panic |