Skip to content
Snippets Groups Projects
Commit 3b3e0e79 authored by sof's avatar sof
Browse files

[project @ 1997-05-18 22:55:57 by sof]

new PP
parent 13b6fa58
No related merge requests found
......@@ -24,8 +24,9 @@ import TcMonoType ( tcHsType )
import TcSimplify ( tcSimplifyCheckThetas )
import TysWiredIn ( intTy, doubleTy, unitTy )
import Type ( SYN_IE(Type) )
import Unique ( numClassKey )
import Pretty ( ppPStr, ppAboves )
import Pretty ( ptext, vcat )
import ErrUtils ( addShortErrLocLine )
import Util
\end{code}
......@@ -63,14 +64,14 @@ tc_defaults decls
dupDefaultDeclErr (DefaultDecl _ locn1 : dup_things) sty
= ppAboves (item1 : map dup_item dup_things)
= vcat (item1 : map dup_item dup_things)
where
item1
= addShortErrLocLine locn1 (\ sty ->
ppPStr SLIT("multiple default declarations")) sty
ptext SLIT("multiple default declarations")) sty
dup_item (DefaultDecl _ locn)
= addShortErrLocLine locn (\ sty ->
ppPStr SLIT("here was another default declaration")) sty
ptext SLIT("here was another default declaration")) sty
\end{code}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment