solidity/test/libsolidity/syntaxTests/specialFunctions/abidecode/contract_array.sol
2021-04-20 17:38:29 +02:00

7 lines
121 B
Solidity

contract C {
function f(bytes calldata x) public pure returns (C[] memory c) {
c = abi.decode(x, (C[]));
}
}
// ----