<div dir="ltr">I get it. Thanks, Ben!</div><div class="gmail_extra"><br><div class="gmail_quote">On Fri, Aug 3, 2018 at 12:48 PM, Ben Gamari <span dir="ltr"><<a href="mailto:ben@smart-cactus.org" target="_blank">ben@smart-cactus.org</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div class="HOEnZb"><div class="h5">On August 2, 2018 9:25:05 PM EDT, Conal Elliott <<a href="mailto:conal@conal.net">conal@conal.net</a>> wrote:<br>
>GHC 8.2.2 and 8.4.3 dislike the following rules:<br>
><br>
>``` haskell<br>
>{-# RULES<br>
><br>
>"pair fst snd" forall p. (,) (exl p) (exr p) = p<br>
><br>
>"swap" forall p. (,) (exr p) (exl p) = swap p<br>
><br>
> #-}<br>
>```<br>
><br>
>Error messages:<br>
><br>
>``` haskell<br>
>/Users/conal/Haskell/concat/<wbr>plugin/src/ConCat/Rebox.hs:<wbr>485:1: warning:<br>
>    A constructor, (,), appears as outermost match in RULE lhs.<br>
>    This rule will be ignored.<br>
>    |<br>
>485 | "pair fst snd" forall p. (,) (exl p) (exr p) = p<br>
>    | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^<wbr>^^^^^^^^^^^^^^^^^^<br>
><br>
>/Users/conal/Haskell/concat/<wbr>plugin/src/ConCat/Rebox.hs:<wbr>489:1: warning:<br>
>    A constructor, (,), appears as outermost match in RULE lhs.<br>
>    This rule will be ignored.<br>
>    |<br>
>489 | "swap" forall p. (,) (exr p) (exl p) = swap p<br>
>    | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^<wbr>^^^^^^^^^^^^^^^<br>
>```<br>
><br>
>GHC 8.0.2 didn't complain about these rules, though I'm unsure whether<br>
>they<br>
>worked as desired.<br>
><br>
>Why disallow such rules (with constructors at the head)?<br>
><br>
>-- Conal<br>
<br>
</div></div>While we only started warning about them recently, previously the rules almost certainly weren't firing as you expected them to. The trouble is that constructors are often replaced with their wrappers rather early in simplification. This meant that matching on constructors in rules was quite unreliable. This is discussed in #13290.<br>
<br>
Cheers,<br>
<br>
- Ben <br>
</blockquote></div><br></div>