From 390959988638ec774796be8a866519ae1fc337e0 Mon Sep 17 00:00:00 2001 From: Matthias Langer Date: Tue, 23 Jul 2019 07:35:25 +0200 Subject: [PATCH] Drop "-opt:l:method" due to a compiler bug See https://github.com/scala/bug/issues/11372 --- build.sbt | 1 - 1 file changed, 1 deletion(-) diff --git a/build.sbt b/build.sbt index dff24a6..8e72d07 100644 --- a/build.sbt +++ b/build.sbt @@ -54,7 +54,6 @@ val scala212Opts = Seq( "-Ywarn-unused:patvars", // Warn if a variable bound in a pattern is unused. "-Ywarn-unused:privates", // Warn if a private member is unused. "-Ywarn-value-discard", // Warn when non-Unit expression results are unused. - "-opt:l:method", ) // See https://nathankleyn.com/2019/05/13/recommended-scalac-flags-for-2-13/