mirror of
				https://github.com/ethereum/solidity
				synced 2023-10-03 13:03:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			396 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			396 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
| contract C {
 | |
| 	uint256 immutable x;
 | |
| 	uint256 immutable y;
 | |
| 	mapping(uint => uint) public m;
 | |
| 	constructor(uint _a) {
 | |
| 		x = 42;
 | |
| 		y = 23;
 | |
| 		m[_a] = 7;
 | |
| 		new uint[](4);
 | |
| 
 | |
| 	}
 | |
| 	function f() public view returns (uint256, uint256) {
 | |
| 		return (x+x,y);
 | |
| 	}
 | |
| }
 | |
| // ----
 | |
| // constructor(): 3 ->
 | |
| // gas irOptimized: 125477
 | |
| // gas legacy: 202011
 | |
| // gas legacyOptimized: 139552
 | |
| // f() -> 84, 23
 | |
| // m(uint256): 3 -> 7
 |