mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Fixed a ICE on calldata to struct member copy
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
// Example from https://github.com/ethereum/solidity/issues/12558
|
||||
pragma abicoder v2;
|
||||
contract C {
|
||||
function() external[1][] s0;
|
||||
constructor(function() external[1][] memory i0)
|
||||
{
|
||||
i0[0] = s0[1];
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user