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

43 lines
388 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)
}