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

13 lines
347 B
Solidity
Raw Normal View History

contract C {
function f(bool b) public pure {
require(b);
uint c = b ? 5 : 1;
assert(c < 5);
}
}
2021-03-31 15:11:54 +00:00
// ====
// SMTEngine: all
// ----
2021-03-31 15:11:54 +00:00
// Warning 6328: (85-98): CHC: Assertion violation happens here.\nCounterexample:\n\nb = true\nc = 5\n\nTransaction trace:\nC.constructor()\nC.f(true)
// Warning 6838: (72-73): BMC: Condition is always true.