Files
kotlin-fork/idea/testData/formatter/IfSpacing.kt
T
2013-11-13 19:08:51 +04:00

36 lines
302 B
Kotlin

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
}