Invert if condition intention: do not remove line breaks #KT-11740 Fixed

This commit is contained in:
Toshiaki Kameyama
2018-04-16 10:39:45 +03:00
committed by Mikhail Glukhikh
parent dce5cb3ce9
commit fee74273aa
9 changed files with 76 additions and 2 deletions
@@ -0,0 +1,7 @@
fun foo(i: Int) {
if (i <= 0) {
} else
bar()
}
fun bar() {}