mirror of
				https://github.com/ethereum/solidity
				synced 2023-10-03 13:03:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
		
			171 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			171 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
| contract A {
 | |
|     event dup();
 | |
|     function dup() public returns (uint) {
 | |
|         return 1;
 | |
|     }
 | |
| }
 | |
| // ----
 | |
| // DeclarationError 2333: (34-96): Identifier already declared.
 |