mirror of
				https://github.com/ethereum/solidity
				synced 2023-10-03 13:03:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			477 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			477 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
| contract C {
 | |
|     event TestA(function() external indexed);
 | |
|     event TestB(function(uint256) external indexed);
 | |
|     function f1() public {
 | |
|         emit TestA(this.f1);
 | |
|     }
 | |
|     function f2(uint256 a) public {
 | |
|         emit TestB(this.f2);
 | |
|     }
 | |
| }
 | |
| // ----
 | |
| // f1() ->
 | |
| // ~ emit TestA(function): #0xc06afe3a8444fc0004668591e8306bfb9968e79ec27fc3050000000000000000
 | |
| // f2(uint256): 1 ->
 | |
| // ~ emit TestB(function): #0xc06afe3a8444fc0004668591e8306bfb9968e79ebf3724af0000000000000000
 |