solidity/test/libsolidity/syntaxTests/array/nested_calldata_storage2.sol
2020-05-25 10:48:42 +02:00

10 lines
261 B
Solidity

pragma experimental ABIEncoderV2;
contract C {
uint[][] tmp_i;
function i(uint[][] calldata s) external { tmp_i = s; }
}
// ----
// UnimplementedFeatureError: Copying nested calldata dynamic arrays to storage is not implemented in the old code generator.