2020-10-13 11:47:03 +00:00
|
|
|
pragma experimental SMTChecker;
|
|
|
|
|
|
|
|
contract C {
|
|
|
|
uint gleft;
|
|
|
|
|
|
|
|
function f() public payable {
|
|
|
|
gleft = gasleft();
|
|
|
|
|
|
|
|
fi();
|
|
|
|
|
|
|
|
assert(gleft == gasleft());
|
|
|
|
assert(gleft >= gasleft());
|
|
|
|
}
|
|
|
|
|
|
|
|
function fi() internal view {
|
|
|
|
assert(gleft == gasleft());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// ----
|
2020-12-02 17:40:48 +00:00
|
|
|
// Warning 6328: (124-150): CHC: Assertion violation happens here.\nCounterexample:\ngleft = 1\n\n\n\nTransaction trace:\nconstructor()\nState: gleft = 0\nf()
|
|
|
|
// Warning 6328: (219-245): CHC: Assertion violation happens here.\nCounterexample:\ngleft = 1\n\n\n\nTransaction trace:\nconstructor()\nState: gleft = 0\nf()
|