summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsimonpj@microsoft.com <unknown>2009-11-10 17:09:23 +0000
committersimonpj@microsoft.com <unknown>2009-11-10 17:09:23 +0000
commit5919794834e385b6f7bda7cfbb8061b93a298426 (patch)
treed8c8cfb13d47b73cbddc9fbcefb1198c9504fa8d
parent9e7dd142eeddc99ccfa9eada236371b267cfbdbb (diff)
downloadhaskell-5919794834e385b6f7bda7cfbb8061b93a298426.tar.gz
Comments only
-rw-r--r--compiler/basicTypes/Var.lhs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/basicTypes/Var.lhs b/compiler/basicTypes/Var.lhs
index 4c49d85003..c52844b81e 100644
--- a/compiler/basicTypes/Var.lhs
+++ b/compiler/basicTypes/Var.lhs
@@ -363,7 +363,7 @@ setIdNotExported id = ASSERT( isLocalId id )
%************************************************************************
\begin{code}
-isTyVar :: Var -> Bool
+isTyVar :: Var -> Bool -- True of both type and coercion variables
isTyVar (TyVar {}) = True
isTyVar (TcTyVar {}) = True
isTyVar _ = False