solidity/test/libsolidity/semanticTests/abiEncoderV2/abi_encode_empty_string_v2.sol
2020-05-07 19:39:15 +02:00

16 lines
344 B
Solidity

// Tests that this will not end up using a "bytes0" type
// (which would assert)
pragma experimental ABIEncoderV2;
contract C {
function f() public pure returns (bytes memory, bytes memory) {
return (abi.encode(""), abi.encodePacked(""));
}
}
// ====
// compileViaYul: also
// ----
// f() -> 0x40, 0xa0, 0x40, 0x20, 0x0, 0x0