solidity/test/libsolidity/smtCheckerTests/control_flow/ways_to_merge_variables_1.sol
2020-07-23 18:49:03 +02:00

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 6328: (159-173): Assertion violation happens here