solidity/test/libsolidity/smtCheckerTests/operators/compound_bitwise_and_1.sol

14 lines
301 B
Solidity
Raw Normal View History

pragma experimental SMTChecker;
contract C {
function f(bool b) public pure {
uint v = 1;
if (b)
v &= 1;
assert(v == 1);
}
}
// ----
2020-07-13 18:48:00 +00:00
// Warning 6328: (116-130): Assertion violation happens here
// Warning 9149: (106-112): Assertion checker does not yet implement this assignment operator.