Skip to content

Commit 850f77e

Browse files
committed
Make opt non-inlined
1 parent 4d07f58 commit 850f77e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library/src/scala/runtime/stdLibPatches/Predef.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ object Predef:
6363
inline def ne(inline y: AnyRef | Null): Boolean =
6464
!(x eq y)
6565

66-
extension (inline opt: Option.type)
66+
extension (opt: Option.type)
6767
@experimental
6868
inline def fromNullable[T](t: T | Null): Option[T] = Option(t).asInstanceOf[Option[T]]
6969
end Predef

0 commit comments

Comments
 (0)