Merge pull request #12604 from ethereum/develop

Merge develop into breaking
This commit is contained in:
chriseth
2022-01-31 17:59:03 +01:00
committed by GitHub
206 changed files with 3675 additions and 1271 deletions
@@ -0,0 +1,9 @@
contract C {
function f() public pure {
function() external g;
assembly {
g.address := 0x42
g.selector := 0x23
}
}
}