summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAustin Seipp <austin@well-typed.com>2014-01-13 19:20:58 -0600
committerAustin Seipp <austin@well-typed.com>2014-01-14 03:46:08 -0600
commitf73fc7d5e4003d628fd2b15bd4e48bae12dd8453 (patch)
tree8753fa068bf4418b6a2238e9a07d4e6ba6bbce10
parent4571b4026248f5b1dc94a46d08b7f88164a5dce2 (diff)
downloadhaskell-f73fc7d5e4003d628fd2b15bd4e48bae12dd8453.tar.gz
Fix TyCon import
Signed-off-by: Austin Seipp <austin@well-typed.com>
-rw-r--r--compiler/specialise/SpecConstr.lhs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/specialise/SpecConstr.lhs b/compiler/specialise/SpecConstr.lhs
index 6332c6b5d2..060c705cda 100644
--- a/compiler/specialise/SpecConstr.lhs
+++ b/compiler/specialise/SpecConstr.lhs
@@ -57,9 +57,9 @@ import PrelNames ( specTyConName )
-- See Note [Forcing specialisation]
#ifndef GHCI
-import TyCon ( TyCon )
type SpecConstrAnnotation = ()
#else
+import TyCon ( TyCon )
import GHC.Exts( SpecConstrAnnotation(..) )
#endif
\end{code}