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 =>
43994399 /** Is this an abstract override method?
44004400 *
44014401 * 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.
44034403 */
4404- @ experimental def AbsOverride : Flags
4404+ def AbsOverride : Flags
44054405
44064406 /** Is this generated by Scala compiler.
44074407 * 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._
44object MiMaFilters {
55 val Library : Seq [ProblemFilter ] = Seq (
66 // New API in 3.4.X
7+ ProblemFilters .exclude[ReversedMissingMethodProblem ](" scala.quoted.Quotes#reflectModule#FlagsModule.AbsOverride" ),
78 ProblemFilters .exclude[ReversedMissingMethodProblem ](" scala.quoted.Quotes#reflectModule.ValOrDefDefTypeTest" ),
89 ProblemFilters .exclude[ReversedMissingMethodProblem ](" scala.quoted.Quotes#reflectModule.ValOrDefDefMethods" ),
910 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(
6868 " scala.annotation.init$.region" ,
6969
7070 // // New APIs: Quotes
71- " scala.quoted.Quotes.reflectModule.FlagsModule.AbsOverride" ,
7271 // Can be stabilized in 3.4.0 (unsure) or later
7372 " scala.quoted.Quotes.reflectModule.CompilationInfoModule.XmacroSettings" ,
7473 " scala.quoted.Quotes.reflectModule.FlagsModule.JavaAnnotation" ,
You can’t perform that action at this time.
0 commit comments