forked from OSchip/llvm-project
				
			
		
			
				
	
	
		
			10 lines
		
	
	
		
			329 B
		
	
	
	
		
			C
		
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			329 B
		
	
	
	
		
			C
		
	
	
	
| // Check that #pragma diagnostic warning overrides -Werror. This matches GCC's
 | |
| // original documentation, but not its earlier implementations.
 | |
| // 
 | |
| // RUN: %clang_cc1 -verify -Werror %s
 | |
| 
 | |
| #pragma clang diagnostic warning "-Wsign-compare"
 | |
| int f0(int x, unsigned y) {
 | |
|   return x < y; // expected-warning {{comparison of integers}}
 | |
| }
 |