mirror of
				https://github.com/ethereum/solidity
				synced 2023-10-03 13:03:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
		
			214 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			214 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
contract test {
 | 
						|
    function fun(uint256 a) public {
 | 
						|
        uint256 x = 3 ** a;
 | 
						|
    }
 | 
						|
}
 | 
						|
// ----
 | 
						|
// Warning: (61-70): Unused local variable.
 | 
						|
// Warning: (20-86): Function state mutability can be restricted to pure
 |