solidity/test/libsolidity/smtCheckerTests/functions/functions_storage_var_2.sol
2023-05-11 10:56:55 -05:00

18 lines
306 B
Solidity

contract C
{
uint a;
function f(uint x) public {
uint y;
a = (y = x);
}
function g() public {
f(1);
f(42);
assert(a > 1);
}
}
// ====
// SMTEngine: all
// ----
// Info 1391: CHC: 1 verification condition(s) proved safe! Enable the model checker option "show proved safe" to see all of them.