blob: dadf6e4fc9f8eaf799a0c9e4cc24a7b1206df877 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
pragma experimental ABIEncoderV2;
contract Test {
struct S { int a; }
function f(S calldata) external { }
}
// ----
// Warning: (0-33): Experimental features are turned on. Do not use experimental features on live deployments.
// TypeError: (89-99): Calldata structs are not yet supported.
|