mirror of
				https://github.com/ethereum/solidity
				synced 2023-10-03 13:03:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			421 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			421 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
| contract C {
 | |
|     /**
 | |
|      * @param 5value a value parameter
 | |
|      * @param _ a value parameter
 | |
|      */
 | |
|     function f(uint256 _5value, uint256 _value, uint256 value) internal {
 | |
|     }
 | |
| }
 | |
| // ----
 | |
| // DocstringParsingError 3881: (17-101): Documented parameter "" not found in the parameter list of the function.
 | |
| // DocstringParsingError 3881: (17-101): Documented parameter "_" not found in the parameter list of the function.
 |