You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The expression gets transformed into !(!a || !(b || c)), which is correct.
However, applying it again on the first logical-or transforms the expression into (a && b || c) instead of the original expression.
A similar issue occurs when you start with a || (b && c) instead.