<p dir="ltr">Can't you just:</p>
<p dir="ltr">instance Foo [a] where<br>
  type Bar [_a] = Int</p>
<p dir="ltr">(At least I think I did that somewhere...)</p>
<div class="gmail_quote">On Jan 16, 2016 9:24 PM, "Edward Kmett" <<a href="mailto:ekmett@gmail.com">ekmett@gmail.com</a>> wrote:<br type="attribution"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">As a data point I now get thousands of occurrences of this warning across my packages.<div><br></div><div>It is quite annoying.</div><div><br></div><div><font face="monospace, monospace">class Foo a where</font></div><div><font face="monospace, monospace">  type Bar a</font></div><div><font face="monospace, monospace"><br></font></div><div><font face="monospace, monospace">instance Foo [a] where</font></div><div><font face="monospace, monospace">  type Bar [a] = Int</font></div><div><font face="monospace, monospace"><br></font></div><div>is enough to trigger it.</div><div><br></div><div>And you can't turn it off by using _ as</div><div><p><font face="monospace, monospace">instance Foo [_] where<br>  type Bar [_] = Int</font></p><p>isn't legal.<br></p><p>I've been avoiding it for now by using</p><p><font face="monospace, monospace"><span>  </span><span>if</span><span> </span><span>impl</span><span>(</span><span>ghc</span><span> </span><span>>=</span><span> 8)</span></font></p><p>








</p><p><font face="monospace, monospace"><span>    </span><span>ghc-options</span><span>: -fno-warn-unused-matches</span></font></p><p><span><font face="arial, helvetica, sans-serif">but this is a pretty awful addition to this warning as it stands.</font></span></p></div><div>-Edward</div></div><div class="gmail_extra"><br><div class="gmail_quote">On Mon, Jan 11, 2016 at 2:12 PM, Henning Thielemann <span dir="ltr"><<a href="mailto:lemming@henning-thielemann.de" target="_blank">lemming@henning-thielemann.de</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><span><br>
On Mon, 11 Jan 2016, Richard Eisenberg wrote:<br>
<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
On Jan 9, 2016, at 6:44 PM, Henning Thielemann <<a href="mailto:lemming@henning-thielemann.de" target="_blank">lemming@henning-thielemann.de</a>> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<br>
instance (Natural n) => Num.Integer (Un n) where<br>
   type Repr (Un _n) = Unary<br>
<br>
<br>
GHC-7.6.3 and GHC-7.4.2 complain:<br>
   Type indexes must match class instance head<br>
   Found `Un _n' but expected `Un n'<br>
   In the type synonym instance declaration for `Num.Repr'<br>
   In the instance declaration for `Num.Integer (Un n)'<br>
<br>
<br>
GHC-7.8.4, GHC-7.10.3 and GHC-8.0 are happy with the difference.<br>
</blockquote>
<br>
I'm surprised this is accepted at all. Looks like hogwash to me. I think you should post a bug report.<br>
</blockquote>
<br></span>
Ok, but then GHC must not warn about the unused argument of Repr.<div><div><br>
_______________________________________________<br>
Glasgow-haskell-users mailing list<br>
<a href="mailto:Glasgow-haskell-users@haskell.org" target="_blank">Glasgow-haskell-users@haskell.org</a><br>
<a href="http://mail.haskell.org/cgi-bin/mailman/listinfo/glasgow-haskell-users" rel="noreferrer" target="_blank">http://mail.haskell.org/cgi-bin/mailman/listinfo/glasgow-haskell-users</a><br>
</div></div></blockquote></div><br></div>
<br>_______________________________________________<br>
Glasgow-haskell-users mailing list<br>
<a href="mailto:Glasgow-haskell-users@haskell.org">Glasgow-haskell-users@haskell.org</a><br>
<a href="http://mail.haskell.org/cgi-bin/mailman/listinfo/glasgow-haskell-users" rel="noreferrer" target="_blank">http://mail.haskell.org/cgi-bin/mailman/listinfo/glasgow-haskell-users</a><br>
<br></blockquote></div>