summaryrefslogtreecommitdiff
path: root/ghc
diff options
context:
space:
mode:
authorsimonm <unknown>1999-01-15 14:08:21 +0000
committersimonm <unknown>1999-01-15 14:08:21 +0000
commit29c635654f96c1721bb6241e19ba0792f9bf940f (patch)
tree55b036b2289b4884a9ebb5cdffefe448301ddfee /ghc
parent21d9d5734bffa93637472ab07b8576bb23b76577 (diff)
downloadhaskell-29c635654f96c1721bb6241e19ba0792f9bf940f.tar.gz
[project @ 1999-01-15 14:08:21 by simonm]
Remove Void use.
Diffstat (limited to 'ghc')
-rw-r--r--ghc/compiler/basicTypes/BasicTypes.lhs2
1 files changed, 1 insertions, 1 deletions
diff --git a/ghc/compiler/basicTypes/BasicTypes.lhs b/ghc/compiler/basicTypes/BasicTypes.lhs
index 5045c784e2..11c16feff7 100644
--- a/ghc/compiler/basicTypes/BasicTypes.lhs
+++ b/ghc/compiler/basicTypes/BasicTypes.lhs
@@ -34,7 +34,7 @@ import Outputable
Used as a placeholder in types.
\begin{code}
-type Unused = Void
+type Unused = ()
unused :: Unused
unused = error "Unused is used!"