solidity/test/libsolidity/semanticTests/arithmetics/divisiod_by_zero.sol

18 lines
483 B
Solidity
Raw Normal View History

contract C {
function div(uint256 a, uint256 b) public returns (uint256) {
return a / b;
}
function mod(uint256 a, uint256 b) public returns (uint256) {
return a % b;
}
}
// ====
// compileToEwasm: also
// compileViaYul: also
// ----
// div(uint256,uint256): 7, 2 -> 3
2020-10-13 11:28:39 +00:00
// div(uint256,uint256): 7, 0 -> FAILURE, hex"4e487b71", 0x12 # throws #
// mod(uint256,uint256): 7, 2 -> 1
2020-10-13 11:28:39 +00:00
// mod(uint256,uint256): 7, 0 -> FAILURE, hex"4e487b71", 0x12 # throws #