Make DeriveFunctor work with unboxed tuples
Summary: Unboxed tuples have `RuntimeRep` arguments which `-XDeriveFunctor` was mistaking for actual data constructor arguments. As a result, a derived `Functor` instance for a datatype that contained an unboxed tuple would generate twice as many arguments as it needed for an unboxed tuple pattern match or expression. The solution is to simply put `dropRuntimeRepArgs` in the right place. Fixes #12399. Test Plan: ./validate Reviewers: austin, hvr, bgamari Reviewed By: bgamari Subscribers: thomie, osa1 Differential Revision: https://phabricator.haskell.org/D2404 GHC Trac Issues: #12399
Showing
- compiler/typecheck/TcGenDeriv.hs 6 additions, 2 deletionscompiler/typecheck/TcGenDeriv.hs
- testsuite/tests/deriving/should_compile/T12399.hs 7 additions, 0 deletionstestsuite/tests/deriving/should_compile/T12399.hs
- testsuite/tests/deriving/should_compile/all.T 1 addition, 0 deletionstestsuite/tests/deriving/should_compile/all.T
Please register or sign in to comment