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

16 lines
383 B
Solidity
Raw Normal View History

2019-12-04 12:11:13 +00:00
pragma experimental SMTChecker;
contract C {
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
if (a == 0) {
return 0;
}
// TODO remove when SMTChecker sees that this code is the `else` of the `return`.
require(a != 0);
uint256 c = a * b;
require(c / a == b);
return c;
}
}
2020-08-11 13:53:24 +00:00
// ----
// Warning 1218: (265-270): Error trying to invoke SMT solver.