mirror of
				https://github.com/ethereum/solidity
				synced 2023-10-03 13:03:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			304 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			304 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
contract C {
 | 
						|
    uint immutable x;
 | 
						|
    constructor() public {
 | 
						|
        x = 3;
 | 
						|
        C.selector.selector;
 | 
						|
        C.selector;
 | 
						|
    }
 | 
						|
 | 
						|
    function selector() external view returns(uint) { return x; }
 | 
						|
}
 | 
						|
// ----
 | 
						|
// Warning: (85-104): Statement has no effect.
 | 
						|
// Warning: (114-124): Statement has no effect.
 |