Fix an error message
authorIan Lynagh <igloo@earth.li>
Sat, 23 Jun 2007 19:06:53 +0000 (19:06 +0000)
committerIan Lynagh <igloo@earth.li>
Sat, 23 Jun 2007 19:06:53 +0000 (19:06 +0000)
`y' in the error message
    `x' is not a (visible) method of class `y'
had gone missing.

compiler/rename/RnEnv.lhs

index 51b30c3..94a65ac 100644 (file)
@@ -232,8 +232,7 @@ lookupInstDeclBndr :: Name -> Located RdrName -> RnM (Located Name)
 -- name is only in scope qualified.  I.e. even if method op is
 -- in scope as M.op, we still allow plain 'op' on the LHS of
 -- an instance decl
-lookupInstDeclBndr cls rdr = lookup_located_sub_bndr is_op
-                               (ptext SLIT("method of class")) rdr
+lookupInstDeclBndr cls rdr = lookup_located_sub_bndr is_op doc rdr
   where
     doc = ptext SLIT("method of class") <+> quotes (ppr cls)
     is_op gre@(GRE {gre_par = ParentIs n}) = n == cls