diff --git a/ghc/compiler/types/FunDeps.lhs b/ghc/compiler/types/FunDeps.lhs index 686d98d6c4cb60b2e357b68557a31fd452b807a4..108fb1c6435aea413536eca3d31b1c5a296b8dc5 100644 --- a/ghc/compiler/types/FunDeps.lhs +++ b/ghc/compiler/types/FunDeps.lhs @@ -79,7 +79,8 @@ lookupInstTy tyvars ts u = ts !! i tyVarFunDep :: [FunDep Type] -> [FunDep TyVar] tyVarFunDep fdtys - = [(varSetElems (tyVarsOfTypes xs), varSetElems (tyVarsOfTypes xs)) | (xs,ys) <- fdtys] + = [(getTyvars xs, getTyvars ys) | (xs, ys) <- fdtys] + where getTyvars = varSetElems . tyVarsOfTypes pprFundeps :: Outputable a => [FunDep a] -> SDoc pprFundeps [] = empty