solidity/test/libsolidity/semanticTests/array/concat/bytes_concat_nested.sol
2021-04-20 17:38:29 +02:00

10 lines
279 B
Solidity

contract C {
function f(bytes memory a, bytes memory b, bytes memory c) public returns (bytes memory) {
return bytes.concat(bytes.concat(a, b), c);
}
}
// ====
// compileViaYul: also
// ----
// f(bytes,bytes,bytes): 0x60, 0x60, 0x60, 2, "ab" -> 0x20, 6, "ababab"