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

11 lines
278 B
Solidity
Raw Normal View History

pragma experimental SMTChecker;
contract C {
function f(bool b) public pure {
uint a = b ? 2 : 3;
assert(a > 2);
}
}
// ----
2021-01-06 15:06:15 +00:00
// Warning 6328: (104-117): CHC: Assertion violation happens here.\nCounterexample:\n\nb = true\n\nTransaction trace:\nC.constructor()\nC.f(true)