solidity/test/libsolidity/smtCheckerTests/operators/conditional_assignment_1.sol
2021-01-12 14:00:07 +01:00

11 lines
278 B
Solidity

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