mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
10 lines
231 B
Solidity
10 lines
231 B
Solidity
pragma abicoder v2;
|
|
contract Test {
|
|
struct S { int[3] a; }
|
|
function f(S calldata s, int[3] calldata a) external {
|
|
s.a = a;
|
|
}
|
|
}
|
|
// ----
|
|
// TypeError 4156: (144-147): Calldata structs are read-only.
|