Update test/libsolidity/syntaxTests/inlineAssembly/assignment_to_function_pointer.sol

Co-authored-by: Kamil Śliwak <kamil.sliwak@codepoets.it>
This commit is contained in:
Daniel Kirchner
2022-01-17 20:12:11 +01:00
committed by GitHub
co-authored by Kamil Śliwak
parent 2d0f6278bb
commit c91f995ec9
@@ -1,9 +1,9 @@
contract C {
function f() public pure {
function() external g;
assembly {
g.address := 0x42
g.selector := 0x23
function f() public pure {
function() external g;
assembly {
g.address := 0x42
g.selector := 0x23
}
}
}
}