diff options
| author | simonm <unknown> | 1999-01-15 14:08:21 +0000 | 
|---|---|---|
| committer | simonm <unknown> | 1999-01-15 14:08:21 +0000 | 
| commit | 29c635654f96c1721bb6241e19ba0792f9bf940f (patch) | |
| tree | 55b036b2289b4884a9ebb5cdffefe448301ddfee /ghc | |
| parent | 21d9d5734bffa93637472ab07b8576bb23b76577 (diff) | |
| download | haskell-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.lhs | 2 | 
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!" | 
