Skip to content

Commit f091ca1

Browse files
committed
Fix MiMa and tasty tests
1 parent 077f60c commit f091ca1

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

project/MiMaFilters.scala

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ object MiMaFilters {
99
// Additions that require a new minor version of the library
1010
Build.mimaPreviousDottyVersion -> Seq(
1111
ProblemFilters.exclude[DirectMissingMethodProblem]("scala.annotation.experimental.this"),
12+
ProblemFilters.exclude[FinalClassProblem]("scala.annotation.experimental"),
1213
),
1314

1415
// Additions since last LTS

tests/run-tasty-inspector/stdlibExperimentalDefinitions.scala

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,9 @@ val experimentalDefinitionInLibrary = Set(
7676
"scala.Tuple$.Reverse", // can be stabilized in 3.5
7777
"scala.Tuple$.ReverseOnto", // can be stabilized in 3.5
7878
"scala.runtime.Tuples$.reverse", // can be stabilized in 3.5
79+
80+
// New feature: fromNullable for explicit nulls
81+
"scala.Predef$.fromNullable",
7982
)
8083

8184

0 commit comments

Comments
 (0)