mirror of
				https://github.com/ethereum/solidity
				synced 2023-10-03 13:03:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			359 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			359 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
| contract C {
 | |
|     uint public i;
 | |
|     constructor(uint newI) {
 | |
|         i = newI;
 | |
|     }
 | |
| }
 | |
| contract D {
 | |
|     C c;
 | |
|     constructor(uint v) {
 | |
|         c = new C(v);
 | |
|     }
 | |
|     function f() public returns (uint r) {
 | |
|         return c.i();
 | |
|     }
 | |
| }
 | |
| // ----
 | |
| // constructor(): 2 ->
 | |
| // gas irOptimized: 195258
 | |
| // gas legacy: 245842
 | |
| // gas legacyOptimized: 195676
 | |
| // f() -> 2
 |