mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
14 lines
346 B
Solidity
14 lines
346 B
Solidity
pragma abicoder v2;
|
|
contract C {
|
|
function f(uint16 a, uint16 b) public returns (uint16) {
|
|
return a + b;
|
|
}
|
|
}
|
|
// ====
|
|
// compileViaYul: also
|
|
// ----
|
|
// f(uint16,uint16): 65534, 0 -> 0xfffe
|
|
// f(uint16,uint16): 65536, 0 -> FAILURE
|
|
// f(uint16,uint16): 65535, 0 -> 0xffff
|
|
// f(uint16,uint16): 65535, 1 -> FAILURE, hex"4e487b71", 0x11
|