mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
15 lines
447 B
Solidity
15 lines
447 B
Solidity
pragma experimental SMTChecker;
|
|
|
|
contract C
|
|
{
|
|
function f() public view {
|
|
assert(gasleft() > 0);
|
|
uint g = gasleft();
|
|
assert(g < gasleft());
|
|
assert(g >= gasleft());
|
|
}
|
|
}
|
|
// ----
|
|
// Warning 6328: (76-97): CHC: Assertion violation happens here.\nCounterexample:\n\n\nTransaction trace:\nC.constructor()\nC.f()
|
|
// Warning 6328: (123-144): CHC: Assertion violation happens here.\nCounterexample:\n\n\nTransaction trace:\nC.constructor()\nC.f()
|