mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
c91f995ec9
Co-authored-by: Kamil Śliwak <kamil.sliwak@codepoets.it>
10 lines
173 B
Solidity
10 lines
173 B
Solidity
contract C {
|
|
function f() public pure {
|
|
function() external g;
|
|
assembly {
|
|
g.address := 0x42
|
|
g.selector := 0x23
|
|
}
|
|
}
|
|
}
|