Skip to content
  • Simon Peyton Jones's avatar
    Fix tracking of what RdrNames are used (fixes Trac #5211) · 6f60f1f5
    Simon Peyton Jones authored
    The issue here was: what import declaration brings into
    scope the 'op here
    
       import qualified Foo( op )
       import Bar( C(op) )
       instance C Int where
         op = ...
    
    Well, the import of Bar, obviously.  But what if the
    import Bar had been
       import Bar( C )
    Then the instance is still supposed to work, getting
    op from the Foo.op imported from Foo.  (I'm assuming its
    the same op, of course.)
    6f60f1f5