mirror of
				https://github.com/ethereum/solidity
				synced 2023-10-03 13:03:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			209 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			209 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
contract C {
 | 
						|
    uint public i;
 | 
						|
    constructor() {
 | 
						|
        i = 2;
 | 
						|
    }
 | 
						|
}
 | 
						|
contract D {
 | 
						|
    function f() public returns (uint r) {
 | 
						|
        return new C().i();
 | 
						|
    }
 | 
						|
}
 | 
						|
// ----
 | 
						|
// f() -> 2
 | 
						|
// gas legacy: 100185
 |