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

35 lines
357 B
Kotlin
Vendored

fun f() {
if (1 == 2) {
}
if (1 == 2) {
}
if (1 == 2) {
}
if (true) {
} else {
}
if (true) {
} else {
}
if (true) {
} else {
}
if (true) {
} else {
}
if (true) {
} else
3 > 2
if (true) (3) else (4)
if (true) (3) else (4)
if (true) (3)
else (4)
}