solidity/test/libsolidity/smtCheckerTests/operators/conditional_assignment_2.sol

13 lines
241 B
Solidity
Raw Normal View History

contract C {
function f(uint b) public pure {
require(b < 3);
uint c = (b > 0) ? b++ : ++b;
assert(c == 0);
}
}
2021-01-21 18:04:34 +00:00
// ====
2021-03-31 15:11:54 +00:00
// SMTEngine: all
2021-01-21 18:04:34 +00:00
// SMTIgnoreCex: yes
// ----
2021-03-31 15:11:54 +00:00
// Warning 6328: (99-113): CHC: Assertion violation happens here.