mirror of
				https://github.com/ethereum/solidity
				synced 2023-10-03 13:03:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
		
			152 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			152 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
contract A {
 | 
						|
    error Err(uint);
 | 
						|
}
 | 
						|
contract B is A {
 | 
						|
    error Err(bytes32);
 | 
						|
}
 | 
						|
// ----
 | 
						|
// DeclarationError 9097: (58-77): Identifier already declared.
 |