Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 2 additions & 10 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import com.typesafe.tools.mima.core.{MissingClassProblem, ProblemFilters}

val scala212 = "2.12.21"
val scala213 = "2.13.18"
val scala3 = "3.3.7"
val scala3 = "3.3.8"

ThisBuild / crossScalaVersions := Seq(scala212, scala213, scala3)
ThisBuild / scalaVersion := scala3
Expand Down Expand Up @@ -30,15 +30,7 @@ val scala3Options = List(
"-Xmax-inlines",
"64",
"-Wvalue-discard",
List(
"explicits",
"implicits",
"imports",
"locals",
"params",
"strict-no-implicit-warn",
"unsafe-warn-patvars"
).mkString("-Wunused:", ",", "")
"-Wunused:linted,params,patvars"
)

val scala213Options = List(
Expand Down
2 changes: 0 additions & 2 deletions core/src/test/scala-3/cats/derived/ADTs.scala
Original file line number Diff line number Diff line change
Expand Up @@ -319,8 +319,6 @@ object ADTs:
)

trait EqInstances:
import ADTs.*

given [A: Eq]: Eq[IList[A]] with
@tailrec final def eqv(x: IList[A], y: IList[A]): Boolean = (x, y) match
case (ICons(hx, tx), ICons(hy, ty)) => hx === hy && eqv(tx, ty)
Expand Down
Loading