The code does not compile, but would compile if 'inline' is removed. Introduced in 0.22, was fine in 0.21 ```scala object NOTHING inline given [A]: Conversion[NOTHING.type, Option[A]] = _ => None def apply[A](p: Vector[A], o: Option[A] = NOTHING): Unit = ??? apply[String](Vector.empty) ``` ``` [error] Found: Option[Any], Required: Option[String] ```