-
Notifications
You must be signed in to change notification settings - Fork 1.1k
False unused import with -Wunused:imports #19912
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Labels
Comments
Looks similar to #18564 and #19657 |
The PR improves how derived and inline are handled, but without a minimization, I probably won't get to testing this. scala-cli doesn't honor -Ylog-classpath FSR.
|
Actually it "just worked" with local compiler.
Closing this ticket as duplicate. I would add a minimized test if one comes to light. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
import cats.derived.auto.semigroup.given
is reported used but if removed it was actually used.import cats.derived.auto.semigroup.given Semigroup[?]
same issue.import cats.derived.auto.semigroup.given_Semigroup_A
works fine.Identified in kittens 3.3.0 but works with kittens 3.2.0 typelevel/kittens#655
I believe this is related to the
transparent
implementation for givens.Compiler version
Reproducable in 3.3.3 and 3.4.0
Minimized code
https://scastie.scala-lang.org/Po0uhQLgSjyzEdnffZLi1g
The text was updated successfully, but these errors were encountered: