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
#4616 failed in test-optimized, until commit 91ca4ba
My conjecture is that the optimizer rewrites E || true to true even if E is side-effecting. This caused several tests under test-optimized to fail. once I changed the code to { E; true } everything compiles fine.