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

11 lines
195 B
Solidity
Raw Normal View History

// Branch does not touch variable a
contract C {
function f(uint x) public pure {
uint a = 3;
if (x > 10) {
}
assert(a == 3);
}
}
2021-03-31 15:11:54 +00:00
// ====
// SMTEngine: all