[clang-cl] Ignore /Wv and /Wv:17 flags
[llvm-project.git] / clang / test / Sema / no-warn-unused-const-variables.c
blob73cfd8ea71b591c5be1986ed113c790f5aab5dfc
1 // RUN: %clang_cc1 -fsyntax-only -Wunused-const-variable -x c-header -ffreestanding -verify %s
2 // RUN: %clang_cc1 -fsyntax-only -Wunused-const-variable -x c++-header -ffreestanding -verify %s
3 // expected-no-diagnostics
4 static const int unused[] = { 2, 3, 5, 7, 11, 13 };