[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git] / clang / test / Frontend / warning-mapping-6.c
blobea22f72cc964ca1b2886197e79c445ecd3a9b815
1 // Check that "#pragma diagnostic error" is suppressed by -w.
2 //
3 // RUN: %clang_cc1 -verify -Werror -w %s
5 // expected-no-diagnostics
6 #pragma gcc diagnostic error "-Wsign-compare"
7 int f0(int x, unsigned y) {
8 return x < y;