diff --git a/bench/profiles/projects.yml b/bench/profiles/projects.yml index ed89a95740c8..f1133d180c54 100644 --- a/bench/profiles/projects.yml +++ b/bench/profiles/projects.yml @@ -26,7 +26,7 @@ charts: scripts: dotty: - - measure -feature -deprecation -unchecked -Xfatal-warnings -encoding UTF8 -language:existentials,higherKinds,implicitConversions,postfixOps -Yexplicit-nulls -with-compiler $(find $PROG_HOME/dotty/compiler/src/dotty -name *.scala -o -name *.java) + - measure -feature -deprecation -unchecked -Xfatal-warnings -encoding UTF8 -language:implicitConversions -Yexplicit-nulls -with-compiler $(find $PROG_HOME/dotty/compiler/src/dotty -name *.scala -o -name *.java) re2s: - measure $(find $PROG_HOME/tests/re2s/src -name *.scala) diff --git a/project/Build.scala b/project/Build.scala index c71506ebe97e..0b8318f35e05 100644 --- a/project/Build.scala +++ b/project/Build.scala @@ -171,7 +171,7 @@ object Build { "-unchecked", "-Xfatal-warnings", "-encoding", "UTF8", - "-language:existentials,higherKinds,implicitConversions" + "-language:implicitConversions" ), (Compile / compile / javacOptions) ++= Seq("-Xlint:unchecked", "-Xlint:deprecation"), @@ -770,6 +770,7 @@ object Build { ) }, + // Note: bench/profiles/projects.yml should be updated accordingly. Compile / scalacOptions ++= Seq("-Yexplicit-nulls"), repl := (Compile / console).value,