Merge pull request #12646 from ethereum/develop

Merging develop into breaking.
This commit is contained in:
chriseth
2022-02-08 12:00:34 +01:00
committed by GitHub
49 changed files with 585 additions and 200 deletions
@@ -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];
}
}