From cd2dba1d23caccb55915c35f9f861a475f90aef7 Mon Sep 17 00:00:00 2001 From: Mateusz Kubuszok Date: Mon, 30 Sep 2024 13:00:29 +0200 Subject: [PATCH] Suppress warnings from the 3.3.4 compiler, which we cannot fix and which are not our fault(?) --- build.sbt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 86d2e52bf..ed476f3bb 100644 --- a/build.sbt +++ b/build.sbt @@ -24,7 +24,7 @@ ciRelease := { val versions = new { val scala212 = "2.12.20" val scala213 = "2.13.15" - val scala3 = "3.3.3" + val scala3 = "3.3.4" // Which versions should be cross-compiled for publishing val scalas = List(scala212, scala213, scala3) @@ -93,6 +93,7 @@ val settings = Seq( "-feature", "-no-indent", "-Wconf:msg=Unreachable case:s", // suppress fake (?) errors in internal.compiletime + "-Wconf:msg=Missing symbol position:s", // suppress warning https://github.com/scala/scala3/issues/21672 "-Wnonunit-statement", // "-Wunused:imports", // import x.Underlying as X is marked as unused even though it is! probably one of https://github.com/scala/scala3/issues/: #18564, #19252, #19657, #19912 "-Wunused:privates",