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