KT-4568: Cleaned up some of the code in ConvertNegatedBooleanSequence to match the other DeMorgan intention

This commit is contained in:
Ross Hanson
2014-04-17 10:22:00 -04:00
committed by Mikhael Bogdanov
parent 4de6960443
commit a5f7ac63a8
4 changed files with 45 additions and 29 deletions
@@ -0,0 +1,3 @@
fun foo(a: Int, b: Int, c: Int, d: Int) : Boolean {
return !(a == b) && !(b <caret>== c) && !(a < d)
}