You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
329 B
10 lines
329 B
// 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}}
|
|
}
|