Can't use custom operator over `val`. this does no...
# announcements
r
Can't use custom operator over
val
. this does not compile:
Copy code
operator fun Option<Int>.inc(): Option<Int> = this.map { it + 1 }

object test {
    val x = Option(0)
    val y = x++
}