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.

9 lines
245 B

// Check that #pragma diagnostic warning overrides -Werror.
//
// 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}}
}