dive-into-ghc icon indicating copy to clipboard operation
dive-into-ghc copied to clipboard

Dive into GHC

Results 1 dive-into-ghc issues
Sort by recently updated
recently updated
newest added

In ghc API 8.0, `xopt_set :: DynFlags -> Extension -> DynFlags`, where `Extension` type comes from `Language.Haskell.TH.LanguageExtensions`. The fix is simply - `s/Opt_ExtendedDefaultRules/TH.ExtendedDefaultRules` on line 27 - import `Language.Haskell.TH.LanguageExtensions` -...