mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
34 lines
736 B
Solidity
34 lines
736 B
Solidity
|
pragma experimental SMTChecker;
|
||
|
|
||
|
contract C {
|
||
|
function f() public pure {
|
||
|
uint v = 1;
|
||
|
v &= 1;
|
||
|
assert(v == 1);
|
||
|
|
||
|
v = 7;
|
||
|
v &= 3;
|
||
|
assert(v != 3); // fails, as 7 & 3 = 3
|
||
|
|
||
|
uint c = 0;
|
||
|
c &= v;
|
||
|
assert(c == 0);
|
||
|
|
||
|
uint8 x = 0xff;
|
||
|
uint16 y = 0xffff;
|
||
|
y &= x;
|
||
|
assert(y == 0xff);
|
||
|
assert(y == 0xffff); // fails
|
||
|
|
||
|
y = 0xffff;
|
||
|
x = 0xff;
|
||
|
y &= y | x;
|
||
|
assert(y == 0xffff);
|
||
|
assert(y == 0xff); // fails
|
||
|
}
|
||
|
}
|
||
|
// ----
|
||
|
// Warning 6328: (177-191): Assertion violation happens here.
|
||
|
// Warning 6328: (380-399): Assertion violation happens here.
|
||
|
// Warning 6328: (506-523): Assertion violation happens here.
|