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.
1 parent 755c675 commit cc87f35Copy full SHA for cc87f35
library/src/scala/runtime/stdLibPatches/Predef.scala
@@ -1,6 +1,6 @@
1
package scala.runtime.stdLibPatches
2
3
-import scala.annotation.since
+import scala.annotation.experimental
4
5
object Predef:
6
import compiletime.summonFrom
@@ -51,10 +51,10 @@ object Predef:
51
scala.runtime.Scala3RunTime.nn(x)
52
53
extension (inline x: AnyRef | Null)
54
- @since("3.2")
+ @experimental
55
inline def eq(inline y: AnyRef | Null): Boolean =
56
x.asInstanceOf[AnyRef] eq y.asInstanceOf[AnyRef]
57
58
inline def ne(inline y: AnyRef | Null): Boolean =
59
!(x eq y)
60
0 commit comments