Skip to content

The result kind of a signature can't mention quantified vars

Simon Peyton Jones requested to merge wip/T19495 into master

This patch fixes a small but egregious bug, which allowed a type signature like

        f :: forall a. blah

not to fail when (blah :: a). Acutally this only showed up as a ASSERT error (#19495 (closed)).

The fix is easy.

Merge request reports