mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
10 lines
451 B
Solidity
10 lines
451 B
Solidity
pragma abicoder v2;
|
|
contract Test {
|
|
struct S { int a; }
|
|
function f(S calldata s) external { s = S(2); }
|
|
function g(S calldata s) external { S memory m; s = m; }
|
|
}
|
|
// ----
|
|
// TypeError 7407: (118-122): Type struct Test.S memory is not implicitly convertible to expected type struct Test.S calldata.
|
|
// TypeError 7407: (182-183): Type struct Test.S memory is not implicitly convertible to expected type struct Test.S calldata.
|