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

13 lines
254 B
Solidity
Raw Normal View History

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