solidity/test/libsolidity/smtCheckerTests/control_flow/short_circuit_and_inside_branch.sol
2020-03-11 16:29:07 +01:00

23 lines
477 B
Solidity

pragma experimental SMTChecker;
contract c {
uint x;
function f() internal returns (uint) {
x = x + 1;
return x;
}
function g() public returns (bool) {
bool b;
x = 100;
b = f() > 0;
assert(x == 102);
// Should fail.
assert(!b);
return b;
}
}
// ----
// Warning: (101-106): Overflow (resulting value larger than 2**256 - 1) happens here
// Warning: (202-218): Assertion violation happens here
// Warning: (242-252): Assertion violation happens here