summaryrefslogtreecommitdiff
path: root/testsuite/tests/ghci/scripts/T12007.hs
Commit message (Collapse)AuthorAgeFilesLines
* Fix bytecode gen to deal with rep-polymorphismSimon Peyton Jones2016-05-261-0/+7
When faced runtime-rep-polymorphic code from a pattern-synonym matcher, the bytecode generator was treating the result as lifted, which it isn't. The fix is just to treat those rep-polymorphic continuations like unlifted types, and add a dummy arg. Trac #12007 is a case in point.