solidity/test/libsolidity/smtCheckerTests/special/tx_data_gasleft_changes.sol

24 lines
538 B
Solidity
Raw Normal View History

2020-10-13 11:47:03 +00:00
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-10 13:06:34 +00:00
// ====
2021-03-31 15:11:54 +00:00
// SMTEngine: all
2020-12-10 13:06:34 +00:00
// SMTIgnoreCex: yes
2020-10-13 11:47:03 +00:00
// ----
2021-03-31 15:11:54 +00:00
// Warning 6328: (91-117): CHC: Assertion violation happens here.
// Warning 6328: (186-212): CHC: Assertion violation happens here.
2023-02-09 16:07:13 +00:00
// Info 1391: CHC: 1 verification condition(s) proved safe! Enable the model checker option "show proved safe" to see all of them.