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
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
val Scala212 = "2.12.20"
val Scala213 = "2.13.16"
val Scala3 = "3.3.6"
val Scala3 = "3.3.7"

ThisBuild / organization := "org.typelevel"
ThisBuild / organizationName := "Typelevel"
Expand Down
2 changes: 1 addition & 1 deletion shared/src/test/scala/mouse/OptionSyntaxTest.scala
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import scala.annotation.nowarn
import scala.util.{Failure, Success}

class OptionSyntaxTest extends MouseSuite {
implicit class ExtraTest[A](a: A) {
implicit class ExtraTest[A](@nowarn3 a: A) {
def shouldBeA[T](implicit @nowarn212 ev: T =:= A): Unit = ()
}

Expand Down
2 changes: 1 addition & 1 deletion shared/src/test/scala/mouse/TrySyntaxTest.scala
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ class TrySyntaxTest extends MouseSuite {
}
}

implicit class ExtraTest[A](a: A) {
implicit class ExtraTest[A](@nowarn3 a: A) {
def shouldBeA[T](implicit @nowarn212 ev: T =:= A): Unit = ()
}

Expand Down