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

15 lines
319 B
Solidity

pragma experimental SMTChecker;
contract C
{
function f(uint x) public pure {
require(x < 10);
uint y = 10;
y *= y + x;
assert(y <= 190);
assert(y < 50);
}
}
// ----
// Warning 6328: (150-164): CHC: Assertion violation happens here.\nCounterexample:\n\nx = 0\n\nTransaction trace:\nC.constructor()\nC.f(0)