2.13: new Scala SHA#1164
Conversation
|
gah |
|
reproducible outside dbuild with some trouble in the silencer repo you then in akka repo diff --git project/AkkaDisciplinePlugin.scala project/AkkaDisciplinePlugin.scala
index 0c42b3a8d7..eedd85b16d 100644
--- project/AkkaDisciplinePlugin.scala
+++ project/AkkaDisciplinePlugin.scala
@@ -47,8 +47,8 @@ object AkkaDisciplinePlugin extends AutoPlugin {
val silencerVersion = "1.6.0"
Seq(
libraryDependencies ++= Seq(
- compilerPlugin(("com.github.ghik" %% "silencer-plugin" % silencerVersion).cross(CrossVersion.patch)),
- ("com.github.ghik" %% "silencer-lib" % silencerVersion % Provided).cross(CrossVersion.patch)))
+ compilerPlugin(("com.github.ghik" %% "silencer-plugin" % silencerVersion).cross(CrossVersion.full)),
+ ("com.github.ghik" %% "silencer-lib" % silencerVersion % Provided).cross(CrossVersion.full)))then you can work around it with: --- a/akka-stream/src/main/scala/akka/stream/impl/ResizableMultiReaderRingBuffer.scala
+++ b/akka-stream/src/main/scala/akka/stream/impl/ResizableMultiReaderRingBuffer.scala
@@ -7,8 +7,6 @@ package akka.stream.impl
import scala.annotation.tailrec
import scala.util.control.NoStackTrace
-import ResizableMultiReaderRingBuffer._
-
import akka.annotation.InternalApi
/**
@@ -20,7 +18,9 @@ import akka.annotation.InternalApi
@InternalApi private[akka] class ResizableMultiReaderRingBuffer[T](
initialSize: Int, // constructor param, not field
maxSize: Int, // constructor param, not field
- val cursors: Cursors) {
+ val cursors: ResizableMultiReaderRingBuffer.Cursors) {
+ import ResizableMultiReaderRingBuffer._
+next step: think about whether this is a regression |
|
curiouser and curiouser: the compilation error goes away if you remove the but it doesn't have to be that annotation in particular. adding LOL, it boils down to just:
|
|
another file was hit, the details are a little different — the import was a |
|
it seems scala/scala#9023 will be reverted, but for now I worked around it; I'll remove the workarounds in the next round |
https://scala-ci.typesafe.com/job/scala-2.13.x-jdk11-integrate-community-build/1545/https://scala-ci.typesafe.com/job/scala-2.13.x-jdk11-integrate-community-build/1546/https://scala-ci.typesafe.com/job/scala-2.13.x-jdk11-integrate-community-build/1553/https://scala-ci.typesafe.com/job/scala-2.13.x-jdk11-integrate-community-build/1554/https://scala-ci.typesafe.com/job/scala-2.13.x-jdk11-integrate-community-build/1555/https://scala-ci.typesafe.com/job/scala-2.13.x-jdk11-integrate-community-build/1556/https://scala-ci.typesafe.com/job/scala-2.13.x-jdk11-integrate-community-build/1558/