mirror of
				https://github.com/ethereum/solidity
				synced 2023-10-03 13:03:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			344 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			344 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
contract c {
 | 
						|
    function f()
 | 
						|
    {
 | 
						|
         a = 1 wei;
 | 
						|
         b = 2 szabo;
 | 
						|
         c = 3 finney;
 | 
						|
         b = 4 ether;
 | 
						|
    }
 | 
						|
    uint256 a;
 | 
						|
    uint256 b;
 | 
						|
    uint256 c;
 | 
						|
    uint256 d;
 | 
						|
}
 | 
						|
// ----
 | 
						|
// Warning: (163-172): This declaration shadows an existing declaration.
 | 
						|
// Warning: (17-128): No visibility specified. Defaulting to "public". 
 |