solidity/test/libsolidity/smtCheckerTests/operators/compound_bitwise_and_1.sol
2020-07-23 18:49:03 +02:00

14 lines
301 B
Solidity

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