mirror of
				https://github.com/ethereum/solidity
				synced 2023-10-03 13:03:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			248 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			248 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
contract C {
 | 
						|
	function f() public view {
 | 
						|
		address payable p = payable(msg.sender);
 | 
						|
		address payable q = payable(address(msg.sender));
 | 
						|
	}
 | 
						|
}
 | 
						|
// ----
 | 
						|
// Warning 2072: (43-60): Unused local variable.
 | 
						|
// Warning 2072: (86-103): Unused local variable.
 |