Skip to content

Files

Latest commit

 

History

History
11 lines (6 loc) · 390 Bytes

assignmentInAssert.md

File metadata and controls

11 lines (6 loc) · 390 Bytes

Pattern: Assignment in assert statement

Issue: -

Description

Variable is modified 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