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

18 lines
369 B
Solidity
Raw Normal View History

pragma experimental SMTChecker;
contract C {
function f() public pure {
uint8 x = 1;
uint16 y = 0;
assert(x ^ y != 0);
x = 0xff;
y = 0xff00;
assert(x ^ y == 0xff);
assert(x ^ y == 0xffff);
assert(x ^ y == 0x0000);
}
}
// ----
2020-09-09 14:12:55 +00:00
// Warning 6328: (155-176): Assertion violation happens here.
// Warning 6328: (207-230): Assertion violation happens here.