diff options
author | Bartosz Nitka <niteria@gmail.com> | 2017-05-27 06:06:16 -0700 |
---|---|---|
committer | Bartosz Nitka <niteria@gmail.com> | 2017-05-27 06:10:40 -0700 |
commit | 2944d27d11b84fb104326ed81c5922548a9edb32 (patch) | |
tree | 98a8d3e88b459a6b31c3a1e529b8e341e3b15841 /compiler/iface | |
parent | db1fd9777525212cf1e563d54491505c4795a7e9 (diff) | |
download | haskell-2944d27d11b84fb104326ed81c5922548a9edb32.tar.gz |
Fix build after 'Shrink a couple of hs-boot files'
Diffstat (limited to 'compiler/iface')
-rw-r--r-- | compiler/iface/IfaceType.hs-boot | 2 | ||||
-rw-r--r-- | compiler/iface/ToIface.hs-boot | 2 |
2 files changed, 1 insertions, 3 deletions
diff --git a/compiler/iface/IfaceType.hs-boot b/compiler/iface/IfaceType.hs-boot index 4807419903..7488aa587c 100644 --- a/compiler/iface/IfaceType.hs-boot +++ b/compiler/iface/IfaceType.hs-boot @@ -4,7 +4,6 @@ module IfaceType( IfaceType, IfaceTyCon, IfaceForAllBndr , IfaceCoercion, IfaceTyLit, IfaceTcArgs ) where import Var (TyVarBndr, ArgFlag) -import TyCon (TyConBndrVis) import FastString (FastString) data IfaceTcArgs @@ -16,5 +15,4 @@ data IfaceTyCon data IfaceTyLit data IfaceCoercion type IfaceTvBndr = (IfLclName, IfaceKind) -type IfaceTyConBinder = TyVarBndr IfaceTvBndr TyConBndrVis type IfaceForAllBndr = TyVarBndr IfaceTvBndr ArgFlag diff --git a/compiler/iface/ToIface.hs-boot b/compiler/iface/ToIface.hs-boot index f3614272af..e2431b82dc 100644 --- a/compiler/iface/ToIface.hs-boot +++ b/compiler/iface/ToIface.hs-boot @@ -3,7 +3,7 @@ module ToIface where import {-# SOURCE #-} TyCoRep import {-# SOURCE #-} IfaceType( IfaceType, IfaceTyCon, IfaceForAllBndr , IfaceCoercion, IfaceTyLit, IfaceTcArgs ) -import Var ( TyVar, TyVarBinder ) +import Var ( TyVarBinder ) import TyCon ( TyCon ) import VarSet( VarSet ) |