<div dir="ltr">There are a number of things one might expect RebindableSyntax to support, but it doesn't. Another examples is that `[1..2]' uses `GHC.Enum.enumFromTo' instead of the `enumFromTo' in scope.<div><br></div><div>My guess is that RebindableSyntax isn't on the priority list.</div><div><br></div><div>- Adam</div><div><br></div><div><br></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Sun, Feb 7, 2016 at 8:08 PM, Chris Smith <span dir="ltr"><<a href="mailto:cdsmith@gmail.com" target="_blank">cdsmith@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">In a custom prelude, I have written the following definitions:<div><br></div><div>data Truth = True | False</div><div><br></div><div>ifThenElse :: Truth -> a -> a -> a</div><div>ifThenElse True x _ = x</div><div>ifThenElse False _ x = x</div><div><br></div><div>(==) :: a -> a -> Truth</div><div>(==) = ...</div><div><br></div><div>I'm replacing Bool with my own Truth type.  Clients will be built with RebindableSyntax, so that they will use these definitions for desugaring.</div><div><br></div><div>However, if I write this:</div><div><br></div><div>f :: Text -> Text</div><div>f "r" = "rrr"</div><div>f other = other</div><div><br></div><div>I get a build error indicating that GHC expected the (==) operator to return a value of type Bool, rather than Truth.</div><div><br></div><div>Shouldn't pattern matching desugar to use overloaded ifThenElse in these situations?  Or is it expected that use of GHC.Types.Bool is hard-coded even with RebindableSyntax enabled?</div><div><br></div><div>Thanks,</div><div>Chris</div></div>
<br>_______________________________________________<br>
Haskell-Cafe mailing list<br>
<a href="mailto:Haskell-Cafe@haskell.org">Haskell-Cafe@haskell.org</a><br>
<a href="http://mail.haskell.org/cgi-bin/mailman/listinfo/haskell-cafe" rel="noreferrer" target="_blank">http://mail.haskell.org/cgi-bin/mailman/listinfo/haskell-cafe</a><br>
<br></blockquote></div><br></div>