mirror of
				https://github.com/mozilla/gecko-dev.git
				synced 2025-10-31 16:28:05 +02:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
	
		
			112 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
	
		
			112 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| void F();
 | |
| 
 | |
| #define BAD_MACRO(x) \
 | |
|   F();               \
 | |
|   F()
 | |
| 
 | |
| void positives() {
 | |
|   if (1)
 | |
|     BAD_MACRO(1);
 | |
| }
 | 
