solidity/test/libsolidity/smtCheckerTests/overflow/unsigned_guard_sub_overflow.sol
2020-08-14 12:58:27 +02:00

9 lines
144 B
Solidity

pragma experimental SMTChecker;
contract C {
function f(uint x, uint y) public pure returns (uint) {
require(x >= y);
return x - y;
}
}