diff options
author | Austin Seipp <austin@well-typed.com> | 2014-01-13 19:20:58 -0600 |
---|---|---|
committer | Austin Seipp <austin@well-typed.com> | 2014-01-14 03:46:08 -0600 |
commit | f73fc7d5e4003d628fd2b15bd4e48bae12dd8453 (patch) | |
tree | 8753fa068bf4418b6a2238e9a07d4e6ba6bbce10 | |
parent | 4571b4026248f5b1dc94a46d08b7f88164a5dce2 (diff) | |
download | haskell-f73fc7d5e4003d628fd2b15bd4e48bae12dd8453.tar.gz |
Fix TyCon import
Signed-off-by: Austin Seipp <austin@well-typed.com>
-rw-r--r-- | compiler/specialise/SpecConstr.lhs | 2 |
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} |