Skip to content

Commit 4023769

Browse files
committed
Update MiMaFilters and error code snippets
1 parent ed7cedc commit 4023769

2 files changed

Lines changed: 7 additions & 2 deletions

File tree

docs/_docs/reference/error-codes/E164.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ class Derived extends Base {
3939
| => String
4040
| but none of the attempts shown below succeeded:
4141
|
42-
| ==> => Int <: => String
43-
| ==> Int <: String = false
42+
| ==> => Int <: => String in frozen constraint
43+
| ==> Int <: String in frozen constraint = false
4444
|
4545
| The tests were made under the empty constraint
4646
-----------------------------------------------------------------------------

project/MiMaFilters.scala

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,11 @@ object MiMaFilters {
1717
ProblemFilters.exclude[DirectMissingMethodProblem]("scala.collection.generic.IsSeq.iarrayIsSeq"),
1818
// new annotation encoding capture checking's `x.except[C]` capabilities
1919
ProblemFilters.exclude[MissingClassProblem]("scala.annotation.internal.exceptCapability"),
20+
21+
ProblemFilters.exclude[MissingClassProblem]("scala.magic.package"),
22+
ProblemFilters.exclude[MissingClassProblem]("scala.magic.package$"),
23+
ProblemFilters.exclude[MissingClassProblem]("scala.magic.compiletime.package"),
24+
ProblemFilters.exclude[MissingClassProblem]("scala.magic.compiletime.package$"),
2025
))
2126

2227
val BackwardsBreakingChanges: Map[String, Seq[ProblemFilter]] = Map(

0 commit comments

Comments
 (0)