Files
kotlin-fork/idea/testData/formatter/ElseOnNewLine.after.inv.kt
T
2014-01-20 19:54:42 +04:00

28 lines
280 B
Kotlin

fun f() {
if (true) {
} else if (true) {
} else {
}
if (true) {
} else if (true) {
} else {
}
if (a) 3 else 4
if (a) 5
else 5
if (a) 5
else
5
if (a)
5
else
5
}
// SET_TRUE: ELSE_ON_NEW_LINE