solidity/test/libsolidity/smtCheckerTests/overflow/unsigned_guard_sum_overflow.sol

9 lines
148 B
Solidity
Raw Normal View History

2020-08-11 11:39:23 +00:00
pragma experimental SMTChecker;
contract C {
function f(uint x, uint y) public pure returns (uint) {
require(x + y >= x);
return x + y;
}
}