mirror of
				https://github.com/ethereum/solidity
				synced 2023-10-03 13:03:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			224 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			224 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
| contract C {
 | |
|     uint public i;
 | |
|     uint public k;
 | |
| 
 | |
|     constructor(uint newI, uint newK) {
 | |
|         i = newI;
 | |
|         k = newK;
 | |
|     }
 | |
| }
 | |
| contract D is C(2, 1) {}
 | |
| // ====
 | |
| // compileViaYul: also
 | |
| // ----
 | |
| // i() -> 2
 | |
| // k() -> 1
 |