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

13 lines
254 B
Solidity

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