-
-
Notifications
You must be signed in to change notification settings - Fork 286
Upgrade scala 2.12.x and 2.13.x versions #1515
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,4 +3,4 @@ package scalarules.test.compiler_plugin | |
import scala.language.higherKinds | ||
|
||
class HKT[F[_]] | ||
class KKTImpl extends HKT[Either[String, ?]] | ||
class KKTImpl extends HKT[Either[String, *]] | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This commit has broken compilation for this file (since Scala See https://docs.scala-lang.org/scala3/guides/migration/plugin-kind-projector.html for more info... this one took me a bit to figure out 😅 |
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not sure where the changes in the coverage files comes from but after generating and inspecting coverage reports new changes are definitely more accurate as the failure case for
A1.a1(false)
was actually not covered by the test and is now depicted as a missing branch in the report.Before :
After :