Merge pull request #12545 from ethereum/yulGrammarFluke

Allow builtins in yul identifier paths in antlr grammar.
This commit is contained in:
Daniel Kirchner
2022-01-17 20:42:14 +01:00
committed by GitHub
3 changed files with 11 additions and 1 deletions
@@ -0,0 +1,9 @@
contract C {
function f() public pure {
function() external g;
assembly {
g.address := 0x42
g.selector := 0x23
}
}
}