Files
kotlin-fork/idea/testData/formatter/RemoveSpacesAroundOperations.kt
T

39 lines
509 B
Kotlin

class Some {
fun some() {
var int : Int = 0
int = 12
int += 12
int -= 12
int *= 12
int /= 12
int %= 12
true && true
true || false
12 === 3
12 !== 3
12 == 3
12 != 3
12 <= 3
12 >= 3
12 < 3
12 > 3
12 + 3 - 12
12 % 3 * 12 / 3
! true
int ++
++ int
int --
-- int
+ 12
- 12
1 .. 2
}
}