summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsheaf <sam.derbyshire@gmail.com>2022-01-25 13:53:40 +0100
committerMarge Bot <ben+marge-bot@smart-cactus.org>2022-01-26 12:03:40 -0500
commit61f6206221bde5427462e0db35c8e624c528486c (patch)
tree2ad3592b585c6f801f235344dbfb154b6dae00b8
parentb55d7db321d78e11b45b5260f1aa46c046d1c05d (diff)
downloadhaskell-61f6206221bde5427462e0db35c8e624c528486c.tar.gz
Remove redundant SOURCE import in FitTypes
Fixes #20995
-rw-r--r--compiler/GHC/Tc/Errors/Hole/FitTypes.hs-boot2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/GHC/Tc/Errors/Hole/FitTypes.hs-boot b/compiler/GHC/Tc/Errors/Hole/FitTypes.hs-boot
index f27d71b41b..c6141d8897 100644
--- a/compiler/GHC/Tc/Errors/Hole/FitTypes.hs-boot
+++ b/compiler/GHC/Tc/Errors/Hole/FitTypes.hs-boot
@@ -5,7 +5,7 @@
module GHC.Tc.Errors.Hole.FitTypes where
import GHC.Base (Int, Maybe)
-import {-# SOURCE #-} GHC.Types.Var (Id)
+import GHC.Types.Var (Id)
import GHC.Types.Name (Name)
import GHC.Types.Name.Reader (GlobalRdrElt)
import GHC.Tc.Utils.TcType (TcType)