mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
29 lines
938 B
Solidity
29 lines
938 B
Solidity
contract C {
|
|
function f(uint a, uint b) public pure returns (uint x) {
|
|
x = a / b;
|
|
}
|
|
function g(int8 a, int8 b) public pure returns (int8 x) {
|
|
x = a / b;
|
|
}
|
|
function h(uint256 a, uint256 b) public pure returns (uint256 x) {
|
|
x = a / b;
|
|
}
|
|
}
|
|
// ====
|
|
// compileViaYul: also
|
|
// compileToEwasm: also
|
|
// ----
|
|
// f(uint256,uint256): 10, 3 -> 3
|
|
// f(uint256,uint256): 1, 0 -> FAILURE, hex"4e487b71", 0x12
|
|
// f(uint256,uint256): 0, 0 -> FAILURE, hex"4e487b71", 0x12
|
|
// f(uint256,uint256): 0, 1 -> 0
|
|
// g(int8,int8): -10, 3 -> -3
|
|
// g(int8,int8): -10, -3 -> 3
|
|
// g(int8,int8): -10, 0 -> FAILURE, hex"4e487b71", 0x12
|
|
// g(int8,int8): -128, 1 -> -128
|
|
// g(int8,int8): -128, -2 -> 64
|
|
// g(int8,int8): -128, 2 -> -64
|
|
// g(int8,int8): -128, -1 -> FAILURE, hex"4e487b71", 0x11
|
|
// g(int8,int8): -127, -1 -> 127
|
|
// h(uint256,uint256): 0x8000000000000000000000000000000000000000000000000000000000000000, -1 -> 0
|