Add intention to expand boolean expression

#KT-38597 Fixed
This commit is contained in:
Toshiaki Kameyama
2020-05-05 14:25:13 +09:00
committed by igoriakovlev
parent f005091dfb
commit 343af60cb4
37 changed files with 257 additions and 0 deletions
@@ -0,0 +1,7 @@
fun test(i: Int): Boolean {
return if (i == 1 || i == 2 || i == 3) {
true
} else {
false
}
}