Suppose I have next class:
data class IntHolder(val x: Int) { operator fun plus(other: IntHolder) = IntHolder(x + other.x) }
And an exten