mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
13 lines
365 B
Solidity
13 lines
365 B
Solidity
contract C {
|
|
function f() public pure {
|
|
// ffff0000 in bytes4
|
|
bytes4 x = ~bytes4(hex"ffff");
|
|
assert(x == 0xffff0000); // should fail
|
|
assert(x == 0x0000ffff); // should hold
|
|
}
|
|
}
|
|
// ====
|
|
// SMTEngine: all
|
|
// ----
|
|
// Warning 6328: (100-123): CHC: Assertion violation happens here.\nCounterexample:\n\nx = 0xffff\n\nTransaction trace:\nC.constructor()\nC.f()
|