We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a2a1e80 + 8b440df commit 2e3f870Copy full SHA for 2e3f870
lib/src/main/scala/org/typelevel/scalacoptions/ScalacOptions.scala
@@ -493,6 +493,12 @@ private[scalacoptions] trait ScalacOptions {
493
val privateRetainTrees =
494
privateOption("retain-trees", version => version >= V3_0_0)
495
496
+ /** Enables explicit nulls that modifies the Scala type system, which makes reference types
497
+ * (anything that extends AnyRef) non-nullable.
498
+ */
499
+ val privateExplicitNulls =
500
+ privateOption("explicit-nulls", version => version >= V3_0_0)
501
+
502
/** Enables support for higher order unification in type constructor inference.
503
*
504
* Initially provided as a compiler option in the 2.12.x series to fix the infamous
0 commit comments