Files
kotlin-fork/idea/testData/formatter/IfSpacing.after.kt
T
2017-06-14 11:28:57 +02:00

36 lines
369 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)
}