solidity/test/libsolidity/semanticTests/strings/concat/string_concat_nested.sol
2022-05-19 20:23:28 +02:00

8 lines
257 B
Solidity

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