solidity/test/libsolidity/smtCheckerTests/special/tx_data_gasleft_changes.sol
Leonardo Alt b9b9c229b4 New tests
2020-10-13 17:49:04 +01:00

22 lines
394 B
Solidity

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());
}
}
// ----
// Warning 6328: (124-150): CHC: Assertion violation happens here.
// Warning 6328: (219-245): CHC: Assertion violation happens here.