<div dir="auto">IIUC Jan is working on a ghc branch, not a plugin. But perhaps this ticket will point in the right direction anyway? HTH.<div dir="auto"><br></div><div dir="auto"><a href="https://gitlab.haskell.org/ghc/ghc/issues/16639">https://gitlab.haskell.org/ghc/ghc/issues/16639</a><br></div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Mon, Sep 30, 2019, 01:44 Richard Eisenberg <<a href="mailto:rae@richarde.dev">rae@richarde.dev</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi Jan,<br>
<br>
The ambiguity check has a simple description. To test if a type `ty` is ambiguous, do this:<br>
<br>
```<br>
x :: ty<br>
x = x<br>
```<br>
<br>
Iff that type-checks, the type is unambiguous. That's it!<br>
<br>
The check does not manufacture a binding `x`, but the implementation runs through the type-checking process for a binding just like the one I've written here.<br>
<br>
In your case, I have two hypotheses:<br>
1. Presumably, you have a solver plugin at work. That may explain the difference in behavior between the two cases.<br>
2. There may be kind variables at work, and these may end up ambiguous. It's definitely worth trying with -fprint-explicit-kinds.<br>
<br>
I hope this helps!<br>
Richard<br>
_______________________________________________<br>
ghc-devs mailing list<br>
<a href="mailto:ghc-devs@haskell.org" target="_blank" rel="noreferrer">ghc-devs@haskell.org</a><br>
<a href="http://mail.haskell.org/cgi-bin/mailman/listinfo/ghc-devs" rel="noreferrer noreferrer" target="_blank">http://mail.haskell.org/cgi-bin/mailman/listinfo/ghc-devs</a><br>
</blockquote></div>