solidity/test/libsolidity/smtCheckerTests/control_flow/ways_to_merge_variables_2.sol

13 lines
252 B
Solidity

pragma experimental SMTChecker;
contract C {
function f(uint x) public pure {
uint a = 3;
if (x > 10) {
++a;
}
assert(a == 3);
}
}
// ----
// Warning 4661: (159-173): Assertion violation happens here