This repository was archived by the owner on Jun 23, 2020. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
library/src/test/scala/scala/tools/selectivecps Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,10 @@ val pluginJar = packageTask in (plugin, Compile)
30
30
// TODO: the library project's test are really plugin tests, but we first need that jar
31
31
lazy val library = project settings (scalaModuleOsgiSettings : _* ) settings (MimaPlugin .mimaDefaultSettings: _* ) settings (
32
32
name := " scala-continuations-library" ,
33
- MimaKeys .mimaPreviousArtifacts := Set (organization.value % s " ${name.value}_2.11.0-RC1 " % " 1.0.0" ),
33
+ MimaKeys .mimaPreviousArtifacts := Set (
34
+ organization.value % s " ${name.value}_2.11.0-RC1 " % " 1.0.0" ,
35
+ organization.value % s " ${name.value}_2.11 " % " 1.0.2"
36
+ ),
34
37
scalacOptions ++= Seq (
35
38
// add the plugin to the compiler
36
39
s " -Xplugin: ${pluginJar.value.getAbsolutePath}" ,
Original file line number Diff line number Diff line change @@ -792,7 +792,7 @@ class HigherOrder {
792
792
}
793
793
class ExecutionContext
794
794
795
- implicit def defaultExecutionContext = new ExecutionContext
795
+ implicit def defaultExecutionContext : ExecutionContext = new ExecutionContext
796
796
797
797
case class Future [+ T ](x : T ) {
798
798
final def map [A ](f : T => A ): Future [A ] = new Future [A ](f(x))
You can’t perform that action at this time.
0 commit comments