mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
10 lines
231 B
Solidity
10 lines
231 B
Solidity
contract C {
|
|
event Test(function() external indexed);
|
|
function f() public {
|
|
emit Test(this.f);
|
|
}
|
|
}
|
|
// ----
|
|
// f() ->
|
|
// ~ emit Test(function): #0xc06afe3a8444fc0004668591e8306bfb9968e79e26121ff00000000000000000
|