Files
kotlin-fork/idea/testData/formatter/BinaryExpressions.kt
T
2014-05-16 17:09:50 +04:00

16 lines
256 B
Kotlin

fun test() {
val somelong = 1 + 2 +
3 - 4 -
5 * 6 *
7 / 8 /
9 % 10 %
11
val withBrackets = 3 +
4 - (5 +
4 * 5)
}
// SET_TRUE: ALIGN_MULTILINE_BINARY_OPERATION
// Strage behaviour for disabled alignment is same to Java