mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
12 lines
253 B
Solidity
12 lines
253 B
Solidity
// Tests that rational numbers (even negative ones) are encoded properly.
|
|
contract C {
|
|
function f() public pure returns (bytes memory) {
|
|
return abi.encode(1, -2);
|
|
}
|
|
}
|
|
|
|
// ====
|
|
// compileViaYul: also
|
|
// ----
|
|
// f() -> 0x20, 0x40, 0x1, -2
|