File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
tests/run-tasty-inspector Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -4399,9 +4399,9 @@ trait Quotes { self: runtime.QuoteUnpickler & runtime.QuoteMatching =>
4399
4399
/** Is this an abstract override method?
4400
4400
*
4401
4401
* This corresponds to a definition declared as "abstract override def" in the source.
4402
- * See https://stackoverflow.com/questions/23645172/why-is-abstract-override-required-not-override-alone-in-subtrait for examples.
4402
+ * See https://stackoverflow.com/questions/23645172/why-is-abstract-override-required-not-override-alone-in-subtrait for examples.
4403
4403
*/
4404
- @ experimental def AbsOverride : Flags
4404
+ def AbsOverride : Flags
4405
4405
4406
4406
/** Is this generated by Scala compiler.
4407
4407
* Corresponds to ACC_SYNTHETIC in the JVM.
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ import com.typesafe.tools.mima.core._
4
4
object MiMaFilters {
5
5
val Library : Seq [ProblemFilter ] = Seq (
6
6
// New API in 3.4.X
7
+ ProblemFilters .exclude[ReversedMissingMethodProblem ](" scala.quoted.Quotes#reflectModule#FlagsModule.AbsOverride" ),
7
8
ProblemFilters .exclude[ReversedMissingMethodProblem ](" scala.quoted.Quotes#reflectModule.ValOrDefDefTypeTest" ),
8
9
ProblemFilters .exclude[ReversedMissingMethodProblem ](" scala.quoted.Quotes#reflectModule.ValOrDefDefMethods" ),
9
10
ProblemFilters .exclude[ReversedMissingMethodProblem ](" scala.quoted.Quotes#reflectModule#defnModule.FunctionClass" )
Original file line number Diff line number Diff line change @@ -68,7 +68,6 @@ val experimentalDefinitionInLibrary = Set(
68
68
" scala.annotation.init$.region" ,
69
69
70
70
// // New APIs: Quotes
71
- " scala.quoted.Quotes.reflectModule.FlagsModule.AbsOverride" ,
72
71
// Can be stabilized in 3.4.0 (unsure) or later
73
72
" scala.quoted.Quotes.reflectModule.CompilationInfoModule.XmacroSettings" ,
74
73
" scala.quoted.Quotes.reflectModule.FlagsModule.JavaAnnotation" ,
You can’t perform that action at this time.
0 commit comments