From 6cfc5a0380bfd2484b35e39ae0afafcbd923755f Mon Sep 17 00:00:00 2001 From: simonpj Date: Thu, 26 Sep 2002 08:44:14 +0000 Subject: [PATCH] [project @ 2002-09-26 08:44:14 by simonpj] Comments --- ghc/compiler/rename/RnBinds.lhs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ghc/compiler/rename/RnBinds.lhs b/ghc/compiler/rename/RnBinds.lhs index 070abda..cb387d1 100644 --- a/ghc/compiler/rename/RnBinds.lhs +++ b/ghc/compiler/rename/RnBinds.lhs @@ -154,7 +154,10 @@ contains bindings for the binders of this particular binding. \begin{code} rnTopMonoBinds mbinds sigs = mappM lookupBndrRn binder_rdr_names `thenM` \ binder_names -> + -- No need to extend the environment; that has been done already + bindPatSigTyVars (collectSigTysFromMonoBinds mbinds) $ + -- Hmm; by analogy with Ids, this doesn't look right let bndr_name_set = mkNameSet binder_names in -- 1.7.10.4