File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed
Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -3,5 +3,13 @@ import com.typesafe.tools.mima.core._
33
44object MiMaFilters {
55 val Library : Seq [ProblemFilter ] = Seq (
6+
7+ // Those are OK because user code is not allowed to inherit from Quotes:
8+ ProblemFilters .exclude[ReversedMissingMethodProblem ](" scala.quoted.Quotes#reflectModule#SymbolMethods.asQuotes" ),
9+ ProblemFilters .exclude[ReversedMissingMethodProblem ](" scala.quoted.Quotes#reflectModule#ClassDefModule.apply" ),
10+ ProblemFilters .exclude[ReversedMissingMethodProblem ](" scala.quoted.Quotes#reflectModule#SymbolModule.newClass" ),
11+ ProblemFilters .exclude[ReversedMissingMethodProblem ](" scala.quoted.Quotes#reflectModule#SymbolMethods.typeRef" ),
12+ ProblemFilters .exclude[ReversedMissingMethodProblem ](" scala.quoted.Quotes#reflectModule#SymbolMethods.termRef" ),
13+ ProblemFilters .exclude[ReversedMissingMethodProblem ](" scala.quoted.Quotes#reflectModule#TypeTreeModule.ref" ),
614 )
715}
You can’t perform that action at this time.
0 commit comments