mirror of
				https://github.com/ethereum/solidity
				synced 2023-10-03 13:03:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			299 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			299 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
| contract C {
 | |
|     uint immutable x;
 | |
|     constructor() {
 | |
|         x = 3;
 | |
|         readX().selector;
 | |
|     }
 | |
| 
 | |
|     function f() external view returns(uint)  {
 | |
|         return x;
 | |
|     }
 | |
| 
 | |
|     function readX() public view returns(function() external view returns(uint) _f) {
 | |
|         _f = this.f;
 | |
|     }
 | |
| }
 | |
| // ----
 |