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
Completion SingleDenotation for snippet below is not reduced properly. It happens when we try to fire completion on implicitly converted type to other, higher kinded type.
Unluckily I don't know if you can check signatures in repl, so we must create snippet.
prolativ
changed the title
Implicit conversions Type Parameter not reducing properly
Type Parameters in completions from implicit conversions not reducing properly
Mar 15, 2022
Compiler version
3.1.1
Minimized code
Completion
SingleDenotation
for snippet below is not reduced properly. It happens when we try to fire completion on implicitly converted type to other, higher kinded type.Unluckily I don't know if you can check signatures in repl, so we must create snippet.
and now hit completion on
1.ma
.Output
Map method has signature of
[A](f: A => B): Option[B]
Expectation
It should be properly reduced to
[B](f: Int => B): Option[B]
The text was updated successfully, but these errors were encountered: