solidity/test/libsolidity/syntaxTests/structs/array_calldata.sol
2019-01-21 10:30:57 +01:00

11 lines
410 B
Solidity

pragma experimental ABIEncoderV2;
contract Test {
struct S { int a; }
function f(S[] calldata) external { }
function f(S[][] calldata) external { }
}
// ----
// Warning: (0-33): Experimental features are turned on. Do not use experimental features on live deployments.
// TypeError: (89-101): Calldata structs are not yet supported.
// TypeError: (131-145): Calldata structs are not yet supported.