We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ebfe23 commit 92f3547Copy full SHA for 92f3547
library/src/scala/caps.scala
@@ -2,8 +2,7 @@ package scala
2
3
import annotation.experimental
4
5
-@experimental
6
-object caps:
+@experimental object caps:
7
8
/** If argument is of type `cs T`, converts to type `box cs T`. This
9
* avoids the error that would be raised when boxing `*`.
project/MiMaFilters.scala
@@ -4,5 +4,6 @@ import com.typesafe.tools.mima.core._
object MiMaFilters {
val Library: Seq[ProblemFilter] = Seq(
ProblemFilters.exclude[MissingClassProblem]("scala.annotation.internal.MappedAlternative"),
+ ProblemFilters.exclude[MissingClassProblem]("scala.caps"),
)
}
0 commit comments