зеркало из https://github.com/mozilla/gecko-dev.git
9 строки
139 B
C++
9 строки
139 B
C++
|
#include "structures.h"
|
||
|
|
||
|
// bugprone-assert-side-effect
|
||
|
void misc_assert_side_effect() {
|
||
|
int X = 0;
|
||
|
assert(X == 1);
|
||
|
assert(X = 1);
|
||
|
}
|