Apply De Morgan's laws to non-negated binary expressions

So #KT-18460 Fixed
This commit is contained in:
Dmitry Neverov
2017-06-16 12:28:04 +03:00
committed by Mikhail Glukhikh
parent af53a0ecd5
commit 44ce5f73f7
44 changed files with 193 additions and 128 deletions
@@ -0,0 +1,3 @@
fun foo(a: Int, b: Int, c: Int, d: Int) : Boolean {
return a >= b || c != d || a >= d
}