You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I tried fixing this issue some time ago.
As far as I remember, my approach was to adjust implicit search to not search all implicits: val conversions = new typer.ImplicitSearch(defn.AnyType, qual, pos.span).allImplicits
But rather, actually find the best implicit: 1.isFini one coming from RichInt and the latter from RichLong
I did not not have much of success though
Activity
rochala commentedon Feb 19, 2025
I tried fixing this issue some time ago.
As far as I remember, my approach was to adjust implicit search to not search all implicits:
val conversions = new typer.ImplicitSearch(defn.AnyType, qual, pos.span).allImplicits
But rather, actually find the best implicit:
1.isFini
one coming fromRichInt
and the latter fromRichLong
I did not not have much of success though