mirror of
				https://github.com/cc65/cc65.git
				synced 2025-10-31 03:16:07 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			229 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			229 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /* pr #1189 - Fixed compiler CHECK failure when calling functions defined with duplicate param names */
 | |
| 
 | |
| void f(int a, int a)
 | |
| {
 | |
| 
 | |
| }
 | |
| 
 | |
| int main(void)
 | |
| {
 | |
|     f(0, 1); /* Check failed: (Param->Flags & SC_PARAM) != 0 */
 | |
|     return 0;
 | |
| }
 |