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

13 lines
252 B
Solidity
Raw Normal View History

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