2018-10-18 13:03:52 +00:00
|
|
|
pragma experimental SMTChecker;
|
|
|
|
|
|
|
|
contract C
|
|
|
|
{
|
|
|
|
function f() public payable {
|
|
|
|
assert(msg.sender == block.coinbase);
|
|
|
|
assert(block.difficulty == block.gaslimit);
|
|
|
|
assert(block.number == block.timestamp);
|
|
|
|
assert(tx.gasprice == msg.value);
|
|
|
|
assert(tx.origin == msg.sender);
|
|
|
|
uint x = block.number;
|
|
|
|
assert(x + 2 > block.number);
|
2020-05-05 11:33:28 +00:00
|
|
|
assert(block.timestamp > 10);
|
2018-10-18 13:03:52 +00:00
|
|
|
assert(gasleft() > 100);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// ----
|
2020-09-25 17:09:06 +00:00
|
|
|
// Warning 6328: (79-115): CHC: Assertion violation happens here.
|
|
|
|
// Warning 6328: (119-161): CHC: Assertion violation happens here.
|
|
|
|
// Warning 6328: (165-204): CHC: Assertion violation happens here.
|
|
|
|
// Warning 6328: (208-240): CHC: Assertion violation happens here.
|
|
|
|
// Warning 6328: (244-275): CHC: Assertion violation happens here.
|
2020-10-27 08:24:32 +00:00
|
|
|
// Warning 4984: (311-316): CHC: Overflow (resulting value larger than 2**256 - 1) happens here.
|
2020-09-25 17:09:06 +00:00
|
|
|
// Warning 6328: (304-332): CHC: Assertion violation happens here.
|
|
|
|
// Warning 6328: (336-364): CHC: Assertion violation happens here.
|
|
|
|
// Warning 6328: (368-391): CHC: Assertion violation happens here.
|