``` object Kotlin { operator fun unary...
# random
g
Copy code
object Kotlin {
        operator fun unaryPlus() = this
        operator fun inc() = this
    }

    @Test fun `when trying to create kotlin +++`{
        
        var kotlin = Kotlin
        
        +(+Kotlin)
        
        +kotlin++
    }