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

11 lines
224 B
Solidity

pragma experimental SMTChecker;
contract C {
int[1][20] c;
function f(bool b) public {
if (b)
c[10][0] |= 1;
}
}
// ----
// Warning 9149: (101-114): Assertion checker does not yet implement this assignment operator.