Skip to content

Files

Latest commit

 

History

History
11 lines (6 loc) · 400 Bytes

assertWithSideEffect.md

File metadata and controls

11 lines (6 loc) · 400 Bytes

Pattern: Assert with side effect

Issue: -

Description

Non-pure function: function is called inside assert statement. Assert statements are removed from release builds so the code inside assert statement is not executed. If the code is needed also in release builds, this is a bug.

Further Reading