groostav
12/08/2016, 8:36 PMobject Kotlin {
operator fun unaryPlus() = this
operator fun inc() = this
}
@Test fun `when trying to create kotlin +++`{
var kotlin = Kotlin
+(+Kotlin)
+kotlin++
}