diff options
Diffstat (limited to 'compiler/rename/RnFixity.hs')
-rw-r--r-- | compiler/rename/RnFixity.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rename/RnFixity.hs b/compiler/rename/RnFixity.hs index 198a0441e5..68d1348871 100644 --- a/compiler/rename/RnFixity.hs +++ b/compiler/rename/RnFixity.hs @@ -157,7 +157,7 @@ lookupFixityRn_help' name occ -- loadInterfaceForName will find B.hi even if B is a hidden module, -- and that's what we want. = do { iface <- loadInterfaceForName doc name - ; let mb_fix = mi_fix_fn iface occ + ; let mb_fix = mi_fix_fn (mi_final_exts iface) occ ; let msg = case mb_fix of Nothing -> text "looking up name" <+> ppr name |