mirror of
				https://github.com/ethereum/solidity
				synced 2023-10-03 13:03:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			238 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			238 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
| contract Base {
 | |
|     constructor(uint) public { }
 | |
| }
 | |
| contract Base1 is Base(3) {}
 | |
| contract Derived is Base, Base1 {
 | |
|     constructor(uint i) Base(i) public {}
 | |
| }
 | |
| // ----
 | |
| // DeclarationError: (138-145): Base constructor arguments given twice.
 |