// FIR_IDENTICAL operator fun Int?.inc(): Int? { return this } public fun box(arg: Int?) : Int? { var i : Int? = arg var j = i++ j.toInt() return i }