Add spaces after ) and around 'else' in 'if'
This commit is contained in:
@@ -5,4 +5,31 @@ fun f() {
|
||||
}
|
||||
if (1 == 2) {
|
||||
}
|
||||
|
||||
if (true) {
|
||||
}
|
||||
else {
|
||||
}
|
||||
|
||||
if (true) {
|
||||
} else {
|
||||
}
|
||||
|
||||
if (true) {
|
||||
} else {
|
||||
}
|
||||
|
||||
if (true)
|
||||
{
|
||||
}
|
||||
else
|
||||
{
|
||||
}
|
||||
|
||||
if (true)
|
||||
{
|
||||
}
|
||||
|
||||
else
|
||||
3 > 2
|
||||
}
|
||||
Reference in New Issue
Block a user