File tree Expand file tree Collapse file tree 2 files changed +1
-4
lines changed
compiler/shared/src/test/scala/grox Expand file tree Collapse file tree 2 files changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -53,9 +53,6 @@ val commonSettings = Seq(
53
53
ScalacOptions .other(" -indent" ),
54
54
ScalacOptions .explain,
55
55
ScalacOptions .release(" 21" ),
56
- ScalacOptions .other(
57
- " -Wsafe-init"
58
- ), // fix in: https://github.com/typelevel/scalac-options/pull/136
59
56
),
60
57
libraryDependencies ++= Seq (
61
58
Dependencies .catsCore.value,
@@ -76,7 +73,6 @@ val commonJsSettings = Seq(
76
73
)
77
74
78
75
val kantan = crossProject(JSPlatform , JVMPlatform )
79
- .settings(scalacOptions -= " -Xfatal-warnings" , scalacOptions += " -Wconf:all" )
80
76
.jsSettings(commonJsSettings)
81
77
82
78
val compiler = crossProject(JSPlatform , JVMPlatform )
Original file line number Diff line number Diff line change @@ -31,3 +31,4 @@ extension (e: Expr)
31
31
case Expr .Literal (tag, true ) => List (True (tag))
32
32
case Expr .Literal (tag, false ) => List (False (tag))
33
33
case Expr .Literal (tag, ()) => List (Null (tag))
34
+ case _ => List .empty
You can’t perform that action at this time.
0 commit comments